Author Topic: Videos of development test  (Read 643 times)

tonma

  • Newbie
  • *
  • Posts: 13
Videos of development test
« on: January 23, 2016, 09:17:59 PM »
Hi, I've just begun my journey in full asm development.

A Platform game and a vertical scrolling game. One with PyschoFox assets and the vertical with Banshee CD32 and ansimuz ship.




Some slowdown only on the video.
« Last Edit: January 23, 2016, 09:20:31 PM by tonma »

elmer

  • Hero Member
  • *****
  • Posts: 2153
Re: Videos of development test
« Reply #1 on: January 24, 2016, 03:26:12 AM »
Congratulations, they're both looking great so far!  :D

It was a good choice (IMHO) to start with someone else's game assets ... you get the benefit of the whole thing looking nice as you start building up your PCE codebase, and it forces you to get some practical experience in handling sprite and map updates.

I remember that you were asking about HuC earlier ... have you decided to ditch that and just write the whole thing in assembly language instead?

tonma

  • Newbie
  • *
  • Posts: 13
Re: Videos of development test
« Reply #2 on: January 24, 2016, 04:22:01 AM »
Thanks  :D

Yes, I leave the HuC alone. Many people told me it's really slow. So why not begin directly with full assembly.

But I code slower than C because I learn at the same time. And because lot of examples / Tools are in C.

incrediblehark

  • Hero Member
  • *****
  • Posts: 638
Re: Videos of development test
« Reply #3 on: January 24, 2016, 05:22:28 AM »
Just wanted to say to keep up the good work! Its nice to see more people getting into pce development, and I look forward to seeing your future projects! :)

Punch

  • Hero Member
  • *****
  • Posts: 3278
Re: Videos of development test
« Reply #4 on: January 24, 2016, 05:22:41 AM »
You could always program non-critical parts of the game in C and inject handmade assembly in the parts you want to go fast.

I just don't do that because I have little idea on how HuC works and I'm too lazy to try to learn it. :P

ParanoiaDragon

  • Hero Member
  • *****
  • Posts: 4619
Re: Videos of development test
« Reply #5 on: January 24, 2016, 06:35:15 PM »
Very cool, keep it up!  Question, I'm slightly familiar with Banshee on the CD32.  Did you have to make any modifications to the graphics you used, such as reducing the color count?

tonma

  • Newbie
  • *
  • Posts: 13
Re: Videos of development test
« Reply #6 on: January 24, 2016, 07:45:50 PM »
For my background, I only use a palette of 16 colors. Because I don't try yet several palettes at the same time.

I'm sure for the AGA or CD32 version, there are at least 32 colors with several different palettes.

esteban

  • Hero Member
  • *****
  • Posts: 24063
Re: Videos of development test
« Reply #7 on: January 24, 2016, 08:13:30 PM »
Fantastique!
  |    | 

Bonknuts

  • Hero Member
  • *****
  • Posts: 3292
Re: Videos of development test
« Reply #8 on: January 25, 2016, 03:12:47 AM »
Nice! Also, welcome to the darkside of assembly ;)

Necromancer

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 21366
Re: Videos of development test
« Reply #9 on: January 25, 2016, 04:10:09 AM »
Nice, man.  Good luck with whatever game you're ultimately looking to make.  :mrgreen:
U.S. Collection: 97% complete    155/159 titles

tonma

  • Newbie
  • *
  • Posts: 13
Re: Videos of development test
« Reply #10 on: January 26, 2016, 07:08:46 PM »
 
Nice! Also, welcome to the darkside of assembly ;)
Thanks to all, I continue my journey of the "côté obscure" of assembly  :mrgreen:
I'm just a padawan.

Gredler

  • Guest
Re: Videos of development test
« Reply #11 on: January 27, 2016, 06:14:20 AM »
Great examples, welcome and good luck! This is rad, another programmer!!

tonma

  • Newbie
  • *
  • Posts: 13
Re: Videos of development test
« Reply #12 on: May 19, 2016, 08:10:59 PM »
New tests on the shoot  :mrgreen: not much time these days.

Adding enemies and collision test.




Bonknuts

  • Hero Member
  • *****
  • Posts: 3292
Re: Videos of development test
« Reply #13 on: May 19, 2016, 08:24:06 PM »
Let us know which method you use for bounding box checks.

tonma

  • Newbie
  • *
  • Posts: 13
Re: Videos of development test
« Reply #14 on: May 19, 2016, 09:16:15 PM »
Let us know which method you use for bounding box checks.

A simple one. Center point of bullet inside the player/enemies sprite bounding box.
I don't know if this method have a name !