Jump to content

CloakeD

New Members
  • Content Count

    67
  • Joined

  • Last visited

Everything posted by CloakeD

  1. Some games I never played and wasn't aware of and they look quite good.
  2. So what is at your top want game on 7800
  3. "but 'asks' are a taboo here IMO, and I am not a programmer myself." asks are taboo here? Why does it matter if your a non programmer?as a gamer you want some of your favorites on the system...completely understandable.Even if you wanted to suggest games to devs it's entirely understandable.Requests from gamers should be considered,as it's them that play our games.
  4. @SearsRoebuck For me personally Kangaroo is completely underrated,I loved playing this game in the arcade as a kid.It's fun to take apart one of my favorite arcade games & learn how everything was implemented.I now know how the ai logic works and the kangaroo handling so I'll start building a playable level over the next few days.
  5. I like what you have also and it looks really good,actually I like all the games you are looking at creating.
  6. My focus is on Kangaroo right now but cloak & dagger is on of my favorites,Unfortunately this is far off as I have other games. .
  7. I wasn't really sure if this was something others would enjoy(I'm kinda weird when it comes to this stuff) understandable this is not an interest to others.
  8. I do see that,good job on learning so many other systems Chris.You've come a long way in your game programming,happy to see you're still at it.
  9. Since I don't keep up with Jaguar emulation how is the current emulation,is CD emulated,more importantly are there any that support debuggers/memory viewers.I've been wanting to reverse engineer Baldies for over a year now in 68000,the developers stated the Jaguar is the only version coded in 68000.My only other choice is dos version & that's my only option to document the game if Jaguar emulation is not an option for me.
  10. Swami,your Alf avatar is awesome.
  11. Hi Chris..I don't see you anymore on sms power.I like that you took what I showed you about tile collision and understand it enough to implement it yourself.Great job Chris.
  12. A better Double Dragon is possible as ram and rom size isn't really an issue anymore,Hi Vinnie.
  13. I'm a lot further into this but as an example do some you want to follow along with me & the reverse engineer of my favorite games? I could share some code along the way like so.. Do_IntroKangaroosGoingToBabies: call HandleMomKangaroo1 call HandleMomKangaroo2 call HandleMomKangaroo3 HandleMomKangaroo3: ld hl,MomKangarooLinkedList3 jr HandleMomKangaroos HandleMomKangaroo2: ld hl,MomKangarooLinkedList2 jr HandleMomKangaroos HandleMomKangaroo1: ld hl,MomKangarooLinkedList1 HandleMomKangaroos: bit 7,(hl) ret bit 0,(hl) ;Mom Kangaroos State jr nz,MomKangarooFall inc hl ld e,(hl) ;Mom Kangaroo X inc hl ld d,(hl) ;Mom Kangaroo Y push hl push de call HandleMomKangaroosAnimation pop de pop hl inc e ;Mom Kangaroos X inc e ;Mom Kangaroos X
  14. This looks awesome,good job on the collision and if happy with how your game entity handles then disregard my post.If interested I can share how bomberman(Nes Zelda also uses this same method) handles the collision with blocks as I used a modified version on my port of Binary Land.Block collision & axis aligning(code will move entity and align) for my own game as I to use tiles & tile sprites but use a ram collision map.
  15. I had to put this into the uncomplete dev folder as I was busy with other dev projects,increasing my knowledge of strategy games(path finding,AI Logic ect..) & recently reverse engineer arcade games, Kangaroo,Ring Fighter,Cloak & Dagger,Monster Bash,in that order.I'll get back on this in a few days.
  16. Double dragon on nes & master system used x & z velocities (fixed point math) so the enemies will move at an angle towards the player if the x distance is greater then 48 pixels,if less then 48 pixels on the x axis then the enemies align the z axis movement within 3 pixels to the player(have a play of double dragon on nes or master system to view this).Both the nes and master system move entities per pixel,the 7800 because of it's double wide pixels can't exactly do a straight over port.It's still a decent game in my opinion.
  17. If a person cannot program and doesn't like a project from a programmer it's best to skip the thread instead of making comments.
  18. I do hope you complete this,although a short game it's still quite fun.On another note I'm new to basic and by looking at your code I learned I can do quite a bit in basic.
  19. @ZeroPage HomeBrew,Seen this today not sure if just a test or will turn into a game.
  20. City Sim is an ambitious project,cool to see this type of game on 7800.Unnamed RPGish Board Game looks good to.
  21. I knew the game looked familiar,,good job.
×
×
  • Create New...