English Amiga Board


Go Back   English Amiga Board > Other Projects > project.Amiga Game Factory

 
 
Thread Tools
Old 27 April 2020, 12:39   #221
Chrille
Registered User
 
Join Date: Sep 2018
Location: Germany
Posts: 35
Quote:
Originally Posted by roondar View Post
Interesting, dynamic frame rate for bobs. Don't remember games doing this - only games that either stuck to 50FPS or stuck to 25FPS (or even lower) for bobs. Nice stuff!
This is not a new technique on Amiga. But it is too less used! And it is easy to implement on a new game engine. Also this is a cool feature for supporting better CPUs and hardware, so a jerky OCS game could run smooth on AGA.

SWIV was the first Amiga 2D-action game (at least the first game I saw) with dynamic frame rate, but SWIVs best frame rate was only 25 FPS (it could slow down to something like 10 FPS). Also most of 3D games have a dynamic frame rate. And Battle Squadron was the first game I saw which has a mixed frame rate (Sprites and Scrolling @50FPS, BOBs@25FPS)

Looking forward to Reshoot Proxima III
Chrille is offline  
Old 27 April 2020, 21:09   #222
buzzybee
Registered User
 
Join Date: Oct 2015
Location: Landsberg / Germany
Posts: 526
Quote:
Originally Posted by Chrille View Post
This is not a new technique on Amiga. But it is too less used! And it is easy to implement on a new game engine. Also this is a cool feature for supporting better CPUs and hardware, so a jerky OCS game could run smooth on AGA.

SWIV was the first Amiga 2D-action game (at least the first game I saw) with dynamic frame rate, but SWIVs best frame rate was only 25 FPS (it could slow down to something like 10 FPS). Also most of 3D games have a dynamic frame rate. And Battle Squadron was the first game I saw which has a mixed frame rate (Sprites and Scrolling @50FPS, BOBs@25FPS)

Looking forward to Reshoot Proxima III
Dynamic framerate is common with 3D-games, yes. I cannot remember a single 2D-game though, which mixes steady 50fps for scrolling plus sprites with dynamic drawrate for bobs. Proxima 3 aims for 50fps for bob updates too. But in very busy situations this may drop to 25fps.

The trick is: Movement of all onscreen objects is updated at 50 fps no matter what. Sprites and scrolling keep a steady 50fps too. The bob drawing code is not synced though and may be 50fps, 25fps or 20fps. This means player vessel, bullets, all objects keep their momentum all the time, regardless of the density of onscreen action.

Actually I, too, thought it´d be easy to implement such a dynamic drawing thingy on Amiga. But real life taught me otherwise. I found it pretty challenging and also relieving when it finally worked.
buzzybee is offline  
Old 28 April 2020, 07:11   #223
sandruzzo
Registered User
 
Join Date: Feb 2011
Location: Italy/Rome
Posts: 2,344
What about some sort of Variable shading Rate? Like object in focus will run at 50hz others at 25 and 17fps the more the distance, less the rate..
sandruzzo is offline  
Old 28 April 2020, 10:08   #224
buzzybee
Registered User
 
Join Date: Oct 2015
Location: Landsberg / Germany
Posts: 526
Quote:
Originally Posted by sandruzzo View Post
What about some sort of Variable shading Rate? Like object in focus will run at 50hz others at 25 and 17fps the more the distance, less the rate..
Interesting proposal, might be very useful under certain circumstances. You want to open a new thread in Coders.general before D Bossmod steps in and closes / moves this thread (again)?
buzzybee is offline  
Old 28 April 2020, 11:23   #225
Chrille
Registered User
 
Join Date: Sep 2018
Location: Germany
Posts: 35
Quote:
Originally Posted by buzzybee View Post
Dynamic framerate is common with 3D-games, yes. I cannot remember a single 2D-game though, which mixes steady 50fps for scrolling plus sprites with dynamic drawrate for bobs. Proxima 3 aims for 50fps for bob updates too. But in very busy situations this may drop to 25fps.
Yes, I remember also only my old unreleased game engine from 1995 There are too less games with 50 FPS. But the technique is old. SWIV fails at running with 50 FPS, but it is the same technique. And yes, you are right, this will be the first released game with 50FPS for sprites and scrolling and a variable frame rate for BOBs.
Quote:
Originally Posted by buzzybee View Post
The trick is: Movement of all onscreen objects is updated at 50 fps no matter what. Sprites and scrolling keep a steady 50fps too. The bob drawing code is not synced though and may be 50fps, 25fps or 20fps. This means player vessel, bullets, all objects keep their momentum all the time, regardless of the density of onscreen action.

Actually I, too, thought it´d be easy to implement such a dynamic drawing thingy on Amiga. But real life taught me otherwise. I found it pretty challenging and also relieving when it finally worked.
Yes, you have to keep 3 Positions, one postion for the current position, and two others for you double buffered screen. And when you have something like a linked list, you must also watch out not destroy your structure. E.g. you can not always delete items from your list. Instead mark it as deleted and delete it when it is safe.

And yes the theory is always easier than the implementation. I remember a implementation of double linked list in C++. This should not be too hard to implement, but the number of bugs showed me something different.

Last edited by Chrille; 28 April 2020 at 11:30.
Chrille is offline  
Old 15 May 2020, 17:59   #226
buzzybee
Registered User
 
Join Date: Oct 2015
Location: Landsberg / Germany
Posts: 526
Had to bughunt for a few weeks, but finally got that little jerk. Wrote a bit of text about the bughunt – it´s on Patreon but it´s still free, so please y´all check it out!
Attached Thumbnails
Click image for larger version

Name:	rp3_debug_blog.jpeg
Views:	224
Size:	349.8 KB
ID:	67323  
buzzybee is offline  
Old 15 May 2020, 18:13   #227
Gilbert
Registered User
 
Join Date: Sep 2008
Location: UK
Posts: 318
Since you guys are talking tech - is there ever any need to triple-buffer games? I always wondered what the point of that would be??

I remember Andrew Braybrook saying he tried it on Fire and Ice to start with.
Gilbert is offline  
Old 15 May 2020, 18:21   #228
roondar
Registered User
 
Join Date: Jul 2015
Location: The Netherlands
Posts: 3,436
Depends on what you mean by triple-buffer. I've used a third buffer that only contained the background many times to accelerate blitting. But I've never used three buffers to actually draw to in sequence.

Standard triple-buffering could still be useful if you have an unsteady frame rate though. Using three buffers in the traditional sense (drawing&displaying in sequence) allows you to smooth out the frame rate at the expense of latency.
roondar is offline  
Old 15 May 2020, 19:54   #229
buzzybee
Registered User
 
Join Date: Oct 2015
Location: Landsberg / Germany
Posts: 526
Quote:
Originally Posted by roondar View Post
Depends on what you mean by triple-buffer. I've used a third buffer that only contained the background many times to accelerate blitting. But I've never used three buffers to actually draw to in sequence.

Standard triple-buffering could still be useful if you have an unsteady frame rate though. Using three buffers in the traditional sense (drawing&displaying in sequence) allows you to smooth out the frame rate at the expense of latency.
For RESHOOT R (and Proxima 3) I use three buffers, switching between each of them and blitter-restoring background from the one which is currently in "idle" state. So yes, this technique speeds up blitter-objects quite a lot.
buzzybee is offline  
Old 16 May 2020, 18:31   #230
Gilbert
Registered User
 
Join Date: Sep 2008
Location: UK
Posts: 318
Quote:
Originally Posted by roondar View Post
Depends on what you mean by triple-buffer. I've used a third buffer that only contained the background many times to accelerate blitting. But I've never used three buffers to actually draw to in sequence.

Standard triple-buffering could still be useful if you have an unsteady frame rate though. Using three buffers in the traditional sense (drawing&displaying in sequence) allows you to smooth out the frame rate at the expense of latency.
Yes i was thinking of the standard version you mention. Just thinking about it in my head - it never really seems worth it. Once you drop a couple of frames it doesn't seem you are any better off than with double buffering.
Gilbert is offline  
Old 16 May 2020, 18:39   #231
Tigerskunk
Inviyya Dude!
 
Tigerskunk's Avatar
 
Join Date: Sep 2016
Location: Amiga Island
Posts: 2,797
You save the time for the 'save'-blit.
Speeds up blitter stuff a lot..
Tigerskunk is offline  
Old 16 May 2020, 18:55   #232
roondar
Registered User
 
Join Date: Jul 2015
Location: The Netherlands
Posts: 3,436
Yeah, it's a big win. Costs quite a bit of memory though, which is a bit painful on OCS machines.
roondar is offline  
Old 05 June 2020, 11:13   #233
buzzybee
Registered User
 
Join Date: Oct 2015
Location: Landsberg / Germany
Posts: 526
I am adding narrative elements to the shmup action. The screenshot shows a test case of my approach; also the first glimpse of the beautiful hero and antagonist portraits which Rod March created. Should add some kind of purpose to the whole game, make you feel more proud of your accomplishments.

What do you guys think when you see this?
Attached Thumbnails
Click image for larger version

Name:	rp3_narration.jpg
Views:	267
Size:	752.1 KB
ID:	67606  
buzzybee is offline  
Old 05 June 2020, 13:25   #234
Tsak
Pixelglass/Reimagine
 
Tsak's Avatar
 
Join Date: Jun 2012
Location: Athens
Posts: 1,056
Nice! I loved that Reshoot-R also had a similar mini story going on. But I hope this time that the portraits will be treated better. The super dithered portraits of Reshoot-R felt really out of place compared to the -otherwise- pretty neat overal artwork.
Tsak is offline  
Old 05 June 2020, 13:48   #235
buzzybee
Registered User
 
Join Date: Oct 2015
Location: Landsberg / Germany
Posts: 526
Quote:
Originally Posted by Tsak View Post
Nice! I loved that Reshoot-R also had a similar mini story going on. But I hope this time that the portraits will be treated better. The super dithered portraits of Reshoot-R felt really out of place compared to the -otherwise- pretty neat overal artwork.
I feel you. This time, each portrait will have its own dedicated palette / does not need to share its colors with the game-view as in RESHOOT R. Therefore color quality will be much better.
buzzybee is offline  
Old 05 June 2020, 16:11   #236
Marchie
Registered User
 
Marchie's Avatar
 
Join Date: Jul 2016
Location: Sydney / London
Posts: 592
Lookin' sweet
Marchie is offline  
Old 07 June 2020, 08:21   #237
thairacerjp
Registered User
 
thairacerjp's Avatar
 
Join Date: Aug 2016
Location: FRANCE
Posts: 375
yeah it's really gorgeous colorful now and really love the background artwork of each side of the screen, deadly ambiance , really emphasizing the atmosphere , thankfully you had a save and not lost this awesome progress, I believe that making a game like this is not a bed of roses ! keep the good work
thairacerjp is offline  
Old 08 June 2020, 08:26   #238
wairnair
Registered User
 
Join Date: Jul 2017
Location: Budapest
Posts: 355
I had plenty of fun with the prequel, interested in this one too. Looks great so far. Do you have a release date estimate? Would be great to play this summer..
wairnair is offline  
Old 08 June 2020, 21:10   #239
thairacerjp
Registered User
 
thairacerjp's Avatar
 
Join Date: Aug 2016
Location: FRANCE
Posts: 375
Quote:
Originally Posted by wairnair View Post
I had plenty of fun with the prequel, interested in this one too. Looks great so far. Do you have a release date estimate? Would be great to play this summer..
he said the game was about half complete, so i don’t expect for this summer,
end of year or 2021, it’s a hard work with great content, so let time to go , Richard is a perfectionist ! , remember reshoot -r was very long to .
thairacerjp is offline  
Old 08 June 2020, 21:34   #240
buzzybee
Registered User
 
Join Date: Oct 2015
Location: Landsberg / Germany
Posts: 526
Quote:
Originally Posted by wairnair View Post
I had plenty of fun with the prequel, interested in this one too. Looks great so far. Do you have a release date estimate? Would be great to play this summer..
This summer is out of the question, so sorry. I´d share @thairacerjps estimate of availability. If all goes well, the game should make a end-of-2020 release.
buzzybee 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
Request: install for Reshoot Puggsy project.WHDLoad 22 05 January 2024 10:38
RESHOOT R in development buzzybee Amiga scene 248 24 October 2023 22:18
Reshoot R crashing! trydowave support.Games 28 26 April 2023 21:53
Reshoot R CD Version Blunder support.FS-UAE 3 15 October 2019 22:46
Reshoot & Reshoot R - Screenshots DamienD HOL contributions 11 14 July 2019 01:51

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:58.

Top

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