English Amiga Board


Go Back   English Amiga Board > Main > Amiga scene

 
 
Thread Tools
Old 27 October 2020, 07:29   #81
spacey
Registered User
 
Join Date: Dec 2016
Location: New Zealand
Posts: 63
looking great!
spacey is offline  
Old 27 October 2020, 08:07   #82
Predseda
Puttymoon inhabitant
 
Predseda's Avatar
 
Join Date: Mar 2007
Location: Tromaville
Age: 46
Posts: 7,539
Send a message via ICQ to Predseda
That sky shark reminds me a bit the flying fortress in Tale Spin cartoon
Predseda is offline  
Old 20 November 2020, 14:56   #83
masteries
Registered User
 
masteries's Avatar
 
Join Date: Oct 2020
Location: Madrid
Age: 40
Posts: 195
Good graphics, excellent parallax
masteries is offline  
Old 20 November 2020, 16:37   #84
buzzybee
Registered User
 
Join Date: Oct 2015
Location: Landsberg / Germany
Posts: 526
Wow, just saw this for the very first time. So this coded in Blitz Basic for AGA-Amiga, right? Beautiful. You are making really good progress here.

How do you guys handle collision on curved surfaces and video priority switching for the main character?
buzzybee is offline  
Old 25 November 2020, 23:35   #85
10shu
Registered User
 
Join Date: Jul 2020
Location: Montreal
Posts: 43
Quote:
Originally Posted by buzzybee View Post
Wow, just saw this for the very first time. So this coded in Blitz Basic for AGA-Amiga, right? Beautiful. You are making really good progress here.

How do you guys handle collision on curved surfaces and video priority switching for the main character?
Thank you Buzzybee...

yes the game is for Amiga 1200 and above.
and yes it is programmed in blitz basic

I cant answer for the curve collision i m only the artist...maybe colin will came by here to reply to you.

we have a new progress video coming out soon.
stay tuned...
10shu is offline  
Old 27 November 2020, 18:09   #86
colinvella
Registered User
 
colinvella's Avatar
 
Join Date: Dec 2019
Location: Marsa
Posts: 23
I haven't posted any updates on Super Metal Hero for a while and the reason is that I spent quite a lot of time optimizing the code to run on a stock 1200.
However I have also worked on all the weapon systems so I have something to show


[ Show youtube player ]
colinvella is offline  
Old 27 November 2020, 18:47   #87
colinvella
Registered User
 
colinvella's Avatar
 
Join Date: Dec 2019
Location: Marsa
Posts: 23
Quote:
Originally Posted by buzzybee View Post
Wow, just saw this for the very first time. So this coded in Blitz Basic for AGA-Amiga, right? Beautiful. You are making really good progress here.

How do you guys handle collision on curved surfaces and video priority switching for the main character?
Collisions on curved and slanted surfaces are implemented with the help of lookup tables that map the Y offset of the surface within the tile (between 0 and 15px) for every x pixel offset within the tile. So instead of assuming that the boundary of a solid tile is always the top (y = 0), it is computed based on the X value and the collision logic is done accordingly. To handle some edge cases (like at the bottom of the ramp where the ramp "slice" is really thin and easy to miss e.g. when falling), there is a special marker tile that "pushes" the player up onto the ramp. It's aim it to provide more surface area to capture the collision.

As for video priority, since the main character is a hardware sprite, it is possible to manipulate a specific video register to control whether the sprite should appear on top of all dual playfield layers, between them, or behind both.

This is a snippet from my code. There are special market tiles (I keep an invisible layer for collision detection, enemy placement, showing the player behind the foreground etc.).

Code:
    fc.b = GetFuncTile{\tx, cy}
    If !IsBehind{fc.b} <> \isBehind
      ; BPLCON2 and BPLCON4 XORed, must keep BPLCON3 to $1C00 due to sprite palette
      DisplayControls #CPL_MAIN, $0004, $1C00, $0
      \isBehind = NOT \isBehind
    EndIf
colinvella is offline  
Old 28 November 2020, 18:14   #88
Gilbert
Registered User
 
Join Date: Sep 2008
Location: UK
Posts: 318
This looks like a great game. Hope it runs on CD32. That's great you explain how to code certain elements too. Great work and thanks from the Amiga community!
Gilbert is offline  
Old 28 November 2020, 19:34   #89
Solo Kazuki
Registered User
 
Solo Kazuki's Avatar
 
Join Date: Sep 2004
Location: Poland
Posts: 1,301
It begin to looks better and better!
I hope it would use more buttons.
Solo Kazuki is offline  
Old 28 November 2020, 20:54   #90
10shu
Registered User
 
Join Date: Jul 2020
Location: Montreal
Posts: 43
Quote:
Originally Posted by Solo Kazuki View Post
It begin to looks better and better!
I hope it would use more buttons.
Thank you.

Ideally i ve designed the game to use 3 buttons...My original ideas was to have this game on Genesis and Neogeo

However i dont think 3button controller are widely available on the Amiga.
so we have designed a 2 buttons and 1 button(+spacebar) control scheme in mind.

please note currently we only have 1 button version integrated...

i m only the artist and designer of the game but Colin say what possible or not for the amiga. We worked like that since barbarian+ and it work great for us...

we also need to be realist and have to think how many people have the hardware at home... doing a AGA game already cut us from a big part of the market...that's why we cannot go crazy and do a 68060 games or we would sell 10 copy :P
10shu is offline  
Old 28 November 2020, 21:38   #91
Solo Kazuki
Registered User
 
Solo Kazuki's Avatar
 
Join Date: Sep 2004
Location: Poland
Posts: 1,301
Quote:
Originally Posted by 10shu View Post
Ideally i ve designed the game to use 3 buttons...My original ideas was to have this game on Genesis and Neogeo

However i dont think 3button controller are widely available on the Amiga.
so we have designed a 2 buttons and 1 button(+spacebar) control scheme in mind.
Please add option to chose control. Some people (including me) have seven button controller (like this for CD32 ) and it would be great to play fully on joypad.

N.B: There is also option to use three buttons without encoding by direct linking pins. It's very rare case (even more than CD32 compatible pads), but it could be also done by someone in near future and some joypads might be available.
Solo Kazuki is offline  
Old 28 November 2020, 23:02   #92
AmyMor
Registered User
 
Join Date: Apr 2020
Location: Calvi Risorta
Posts: 167
Cool

Quote:
Originally Posted by 10shu View Post
Thank you.

Ideally i ve designed the game to use 3 buttons...My original ideas was to have this game on Genesis and Neogeo

However i dont think 3button controller are widely available on the Amiga.
so we have designed a 2 buttons and 1 button(+spacebar) control scheme in mind.

please note currently we only have 1 button version integrated...

i m only the artist and designer of the game but Colin say what possible or not for the amiga. We worked like that since barbarian+ and it work great for us...

we also need to be realist and have to think how many people have the hardware at home... doing a AGA game already cut us from a big part of the market...that's why we cannot go crazy and do a 68060 games or we would sell 10 copy :P
Maybe that's not the case ... Try making a commercial RTG game with your quality and skill, plus bigBoxes and you'll see 1000 copies fly away in no time!:grande
AmyMor is offline  
Old 29 November 2020, 11:58   #93
Adrian Cummings
Mutation/AmigaDweeb
 
Adrian Cummings's Avatar
 
Join Date: Sep 2009
Location: Sconnie Botland
Age: 59
Posts: 805
This game looks very nice and I am actually impressed that it can be written in Blitz. Will it run at 25fps on stock Amiga A1200 (020) 2Mb chipmem when completed or maybe need a bit more hardware action into the bargain?

Just asking as a fellow game developer.

Good stuff tho regardless.

Last edited by Adrian Cummings; 30 November 2020 at 06:49.
Adrian Cummings is offline  
Old 30 November 2020, 22:38   #94
10shu
Registered User
 
Join Date: Jul 2020
Location: Montreal
Posts: 43
Quote:
Originally Posted by AmyMor View Post
Maybe that's not the case ... Try making a commercial RTG game with your quality and skill, plus bigBoxes and you'll see 1000 copies fly away in no time!:grande
We dont have acces to a RTG machine... to tell you everything i dont even own an AMIGA1200...

Those are expensive hardware...
10shu is offline  
Old 30 November 2020, 22:39   #95
10shu
Registered User
 
Join Date: Jul 2020
Location: Montreal
Posts: 43
Quote:
Originally Posted by Adrian Cummings View Post
This game looks very nice and I am actually impressed that it can be written in Blitz. Will it run at 25fps on stock Amiga A1200 (020) 2Mb chipmem when completed or maybe need a bit more hardware action into the bargain?

Just asking as a fellow game developer.

Good stuff tho regardless.
Yes currently is running on the amiga 1200 2Mb of chipmem.
we hope it stay that way... we still have Enemy to add in.
10shu is offline  
Old 01 December 2020, 08:20   #96
Adrian Cummings
Mutation/AmigaDweeb
 
Adrian Cummings's Avatar
 
Join Date: Sep 2009
Location: Sconnie Botland
Age: 59
Posts: 805
Quote:
Originally Posted by 10shu View Post
Yes currently is running on the amiga 1200 2Mb of chipmem.
we hope it stay that way... we still have Enemy to add in.
Good stuff and all the best with your game when released
Adrian Cummings is offline  
Old 02 December 2020, 12:20   #97
edd_jedi
Registered User
 
edd_jedi's Avatar
 
Join Date: Apr 2010
Location: London / UK
Posts: 420
Looks great, looking forward to this!
edd_jedi is offline  
Old 04 December 2020, 20:48   #98
colinvella
Registered User
 
colinvella's Avatar
 
Join Date: Dec 2019
Location: Marsa
Posts: 23
Quote:
Originally Posted by 10shu View Post
Thank you.

Ideally i ve designed the game to use 3 buttons...My original ideas was to have this game on Genesis and Neogeo

However i dont think 3button controller are widely available on the Amiga.
so we have designed a 2 buttons and 1 button(+spacebar) control scheme in mind.

please note currently we only have 1 button version integrated...
To add on to what 10shu said. The game actually support a 2-button joystick (that's the maximum buttons allowed on Amiga). However it also takes into account that most Amiga joysticks where actually single button. Hence the primary button is used for attack, while the secondary button, if available, is used of jumping. For a single button joystick, it is also possible to jump by pushing the joystick up, which is the standard in many Amiga games.
colinvella is offline  
Old 04 December 2020, 20:51   #99
colinvella
Registered User
 
colinvella's Avatar
 
Join Date: Dec 2019
Location: Marsa
Posts: 23
Quote:
Originally Posted by Adrian Cummings View Post
This game looks very nice and I am actually impressed that it can be written in Blitz. Will it run at 25fps on stock Amiga A1200 (020) 2Mb chipmem when completed or maybe need a bit more hardware action into the bargain?

Just asking as a fellow game developer.

Good stuff tho regardless.
We're trying (hard!) to keep the game running at 50fps on a stock 1200.
colinvella is offline  
Old 06 December 2020, 01:37   #100
Lizart
Registered User
 
Join Date: May 2020
Location: Germany
Posts: 57
The Game looks great and for sure i will buy it CD32 Pad support would be great
Lizart is offline  
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
Disposable Hero mtb support.WinUAE 21 03 September 2023 14:58
Getting into the A1200: from zero to hero djukon New to Emulation or Amiga scene 12 21 March 2018 22:41
EAB/Lemon Super League 2013: Round 12 - Disposable Hero Graham Humphrey EAB's competition 41 20 October 2013 03:13
Dungeon Hero Jgames Retrogaming General Discussion 3 04 July 2010 18:55
Guitar Hero cosmicfrog MarketPlace 0 04 October 2009 23:00

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 01:26.

Top

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Page generated in 0.13493 seconds with 15 queries