Scrolling Game Development Kit Forum
SGDK Version 2 => Projects => Topic started by: gwal on 2008-02-17, 09:13:00 PM
-
I think the title says it all - I've started working a new game (for the first time in a year?). Anyways, the game is going to a fighting game in the style of Super Smash Bros, along with single-player sidescrolling levels. Be warned, the scrolling levels are going to be completely random in their structure, and may be incredibly difficult. The other 'ridiculous' factor in this game will be its characters. Screenshots + more info coming soon.
-
sounds awesome. :D
-
I doubt that it'll take me more than 3 tries to beat it.
But who am I to talk... Sounds Sweet!
-
I was inspired to do the whole 'insane difficulty' thing after watching my friend play the game 'Super Mario Intrigue':
http://www.youtube.com/watch?v=Lb2pmtLbK2I (http://www.youtube.com/watch?v=Lb2pmtLbK2I)
-
Good grief, those are insane. Were those in the real Super Mario World, or did someone hack it?
-
Combining genius, insanity, a challenge, and randomosity...heh...how intrieging.... :suspious:
Nitntendo could learn from you...<hint hint>
-
oh my GOD! the part with the bomb is unbelievable!! and the part with the tortoise shell... and ... and ... ALL OF THAT IS HARDCORE!
i suppose one can script those moving platforms with sgdk2 also?
it must be so goddamn tricky to make a level the player doesn't need to move. i mean this level where mario bounces on these note blocks and stands on a moving platform, which delivers him to the next platform or note block. special world level 3.
-
It's not part of the regular Mario World, its a ROM hack that people play with a SNES emulator. It's almost painful to watch a 'normal' person playing SM Intrigue, because the difficulty level is so high. I'm not planning on making my game THAT difficult, but after the player has learned how to play it the levels are going to get pretty hard.
-
Sweet! (Good luck, Godspeed, Mazeltov, and whatnot.) I hope it's as good as it sounds.
-
Further inspiration:
http://kayin.pyoko.org/iwbtg/
This is the hardest game I have ever played.
-
try "N"
awesome ninja game, starts off easy but the last levels are just so unbelievably hard (or download a heap of user made levels, usually hard as hell, or MAKE YOUR OWN)
-
Yeah, I've played 'N'. That one is pretty challenging too.
Ridiculosity Concept #7:
There will be sheep. Touching sheep will result in imminent death. Sheep can attack from anywhere and at anytime. Obviously, the player has done something great and horrible to all of sheepkind before the main events of the game.
-
...ouch
-
The latest issue of Wired talked about this project where a guy collected 10,000 drawings of sheep for $.02 each online: http://www.thesheepmarket.com/ (http://www.thesheepmarket.com/)
-
The First Level: Our hero awakens in a forest. He must find a sword in order to destroy the invisible barriers blocking him from going to the castle... where there is evil.
-
Level 2: The Castle. As you can see, there are many spikes.
-
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?
-
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)
-
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...
-
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.
-
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.
-
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.