Author Topic: Ridiculosity - A Game That is Utterly Ridiculous  (Read 18801 times)

gwal

  • Regular
  • **
  • Posts: 69
  • Game Progress: Outer Space / Items
    • View Profile
Re: Ridiculosity - A Game That is Utterly Ridiculous
« Reply #15 on: 2008-04-01, 12:21:04 AM »
Level 2: The Castle. As you can see, there are many spikes.

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Ridiculosity - A Game That is Utterly Ridiculous
« Reply #16 on: 2008-04-01, 04:48:37 AM »
I noticed that your spikes were defined with sprites instead of tiles.  Wouldn't it be easier if spikes were tiles?  Or did you want them to be sprites to improve the collision detection?

Jam0864

  • Contributor
  • Fanatic
  • **
  • Posts: 744
    • MSN Messenger - marmalade0864@hotmail.com
    • View Profile
    • Jam0864's Content Dump
    • Email
Re: Ridiculosity - A Game That is Utterly Ridiculous
« Reply #17 on: 2008-04-01, 08:14:14 AM »
adding that many sprites would be a pain in the ass. :/
but if your determined enough, the already frustratingly difficult game will turn out better because people won't question the collisions in frustration. (as often xD)


gwal

  • Regular
  • **
  • Posts: 69
  • Game Progress: Outer Space / Items
    • View Profile
Re: Ridiculosity - A Game That is Utterly Ridiculous
« Reply #18 on: 2008-04-01, 10:03:59 AM »
At first the spikes were tiles, but then i made the switch to sprites to improve collision detection. As shown by the screenshot above, collision detection is VERY important. Also, making spikes as sprites opens up a lot more options for what they can do.

A funny thing about this game is that it takes me more time to test out a section to see if it's actually possible to complete, than to build the section itself.  8)

RIDICULOSITY CONCEPT #14: Like any good adventure, this game is a Musical Adventure! Expect to run into various familiar and unfamiliar musicians and artists through your journey. Of course, they probably aren't interested in being your friend...

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: Ridiculosity - A Game That is Utterly Ridiculous
« Reply #19 on: 2008-04-01, 11:26:16 AM »
The collision detection could be improved by writing your own set of solidity classes, of course, which would be much more efficient, I think.  It doesn't need to be perfect, obviously, since the two sprites cannot overlap their bounding boxes by any significant amount and still not be colliding.  You could just have a class that makes the tile only half-solid, or three quarters, or even a trapezoidal shape so you can be somewhat forgiving.  I don't imagine you need your sprites to be so very flexible such that it cannot be represented by animated tiles.  In the odd cases, you can still use your sprites.
Edward Dassmesser

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Ridiculosity - A Game That is Utterly Ridiculous
« Reply #20 on: 2008-04-01, 12:43:11 PM »
I wonder how hard it would be to create a sprite and a tile based on the same graphic, and perform collision detection with the tile based on the sprite's mask.  I'm not talking about the usual solidity collision detection, but some custom collision detection function for a sprite and tile that just determines if a sprite is colliding with a tile.  That would avoid the problem of having to check all the active sprites in the category (only check the tiles near the sprite) and still allow pixel-perfect collision detection.

gwal

  • Regular
  • **
  • Posts: 69
  • Game Progress: Outer Space / Items
    • View Profile
Re: Ridiculosity - A Game That is Utterly Ridiculous
« Reply #21 on: 2008-04-28, 08:09:14 AM »
Update:
The majority of the game is original content, with a few exceptions of 'Guest Characters' who are in there for one reason or another. This screenshot is from the second area.