English Amiga Board


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

 
 
Thread Tools
Old 06 October 2021, 01:30   #1
DanielAllsopp
Registered User
 
DanielAllsopp's Avatar
 
Join Date: Feb 2018
Location: Northumberland, UK
Posts: 272
Robocop AGA

Initial Update / Background

As I've enjoyed following the development threads for the likes of Rygar, Kung Fu Master, Pacman, Turrican 2 AGA etc. I thought I'd create a thread to document progress of my Robocop port for AGA Amigas.

Although I've been a high-level programmer for 20-odd years now, this is my first delve into 68k ASM and utilising the Amiga hardware by "banging the metal", and I must say it's bloody hard work!

I started with Photon's startup code and tutorials, and over the past 18 months have tinkered on, bent more experienced coders' ears (quite a lot) and through experimenting with various other ports and ripped graphics, settled on Robocop and came up with what we have today.

Now, please don't expect updates or the general development progress that you're used to seeing from the likes of mcgeezer, jotd or Muzza... I have nowhere near the experience that those guys have but I'll try and keep on top of this and post progress when I can.

The current engine is nothing special; it runs in 64 colours, utilising 64 pixel wide sprites for the background parallax on level 1, and a 4x fetch mode. Graphics were converted from the arcade originals, and reduced down with Paint and Photoshop into various banks of 16 colours; Robocop is 16 colours and I think the background right now is 32 colours although I could be wrong.

I use PPaint and PicCon on the Amiga, and Photoshop, Tiled and Aseprite on the Mac. Emulation is with FS-UAE.

My first test engine was an initial attempt at scrolling through a map using the hardware, and blitting into an offscreen column:

[ Show youtube player ]

This worked well, but I still had to implement the blitter restore routine for the main sprite. I was happy with my progress up to now though, so that head-scratcher could wait!
DanielAllsopp is offline  
Old 06 October 2021, 01:33   #2
DanielAllsopp
Registered User
 
DanielAllsopp's Avatar
 
Join Date: Feb 2018
Location: Northumberland, UK
Posts: 272
Update #1

So that was a quick update! I've picked up my code again recently and implemented the dreaded blitter restore routine, which wasn't as bad as I thought it would be.

It seems to work well.

I also updated the scrolling routine and fixed a few bugs in there relating to Robocop's position when he reaches the end of the level. All simple stuff really, but it needed doing.

The video here is pretty much the same as the last one, obviously with the restore routine implemented, Robocop now doesn't leave a trail behind him!

Ahhh... simple things

[ Show youtube player ]
DanielAllsopp is offline  
Old 06 October 2021, 04:58   #3
skyzoo73
Registered User
 
skyzoo73's Avatar
 
Join Date: Sep 2019
Location: Italy
Age: 50
Posts: 292
Fantastic ! looks like the arcade, really impressive. It was one of my favorites!
skyzoo73 is offline  
Old 06 October 2021, 08:11   #4
acidbottle
Registered User
 
acidbottle's Avatar
 
Join Date: Jul 2018
Location: Scotland
Posts: 821
Amazing! Watched the movie a couple of nights back to. Looks like you have nailed the visuals. The potential in the AGA was never fully reached back in the days, hope you pull this one off
acidbottle is offline  
Old 06 October 2021, 09:41   #5
str0m
Registered User
 
Join Date: Oct 2016
Location: Newcastle, UK
Posts: 264
Looks stunning, more quality northern programming like with mcgeezer lol. They have the arcade cab at Leeds Arcade Club btw.
str0m is offline  
Old 06 October 2021, 11:35   #6
jotd
This cat is no more
 
jotd's Avatar
 
Join Date: Dec 2004
Location: FRANCE
Age: 52
Posts: 8,162
it really looks great! AGA is definitely the proper target with that one
jotd is online now  
Old 06 October 2021, 13:18   #7
fxgogo
Also known as GarethQ
 
fxgogo's Avatar
 
Join Date: May 2019
Location: Twickenham / U.K.
Posts: 715
Looking very cool. Am I correct in seeing the scrolling looking a little slower or 'steppy' in the second video?
I am looking at some ASM coding after years of JS and Python. Any suggested books to read?
fxgogo is offline  
Old 06 October 2021, 13:42   #8
rothers
Registered User
 
Join Date: Apr 2018
Location: UK
Posts: 487
This looks great and I'm happy it's being done now by 2 people, but Robocop is 100% possible on an A500, the game is pretty simple, I'd say Robocop2 on Amiga is actually beyond the arcade engine.

[ Show youtube player ]

I am still tempted to do an A500 port, just waiting on the A500 thread to be updated to see if the port there is abandoned or not...
rothers is offline  
Old 06 October 2021, 14:15   #9
DanielAllsopp
Registered User
 
DanielAllsopp's Avatar
 
Join Date: Feb 2018
Location: Northumberland, UK
Posts: 272
Thanks for the positive comments everyone

Quote:
Originally Posted by fxgogo View Post
Looking very cool. Am I correct in seeing the scrolling looking a little slower or 'steppy' in the second video?
I am looking at some ASM coding after years of JS and Python. Any suggested books to read?
Probably just the screen recording and/or FS-UAE as I hadn't changed anything in the scrolling code; it remains the same. I still need to check on real hardware, but I need to get my CRT monitor fixed first.

Getting into ASM coding? Coming from a high-level language too, maybe go down the same route I did with Photon's tutorials: [ Show youtube player ] and it's wonderful "Hello, Amiga Coders" line.
DanielAllsopp is offline  
Old 06 October 2021, 14:25   #10
jotd
This cat is no more
 
jotd's Avatar
 
Join Date: Dec 2004
Location: FRANCE
Age: 52
Posts: 8,162
you can use my Pacman Amiga port source code and try to rebuild it, then hack into it. It's pretty simple actually (Mspacman WIP source code is better because it has blitter cookie cut routines too)

There are also python scripts to generate assets in amiga raw format.
jotd is online now  
Old 06 October 2021, 14:31   #11
DanielAllsopp
Registered User
 
DanielAllsopp's Avatar
 
Join Date: Feb 2018
Location: Northumberland, UK
Posts: 272
Also, if you're using macOS then I wrote a small tool to help with a few problems I came across whilst starting: http://eab.abime.net/showthread.php?t=97698
DanielAllsopp is offline  
Old 06 October 2021, 15:24   #12
fxgogo
Also known as GarethQ
 
fxgogo's Avatar
 
Join Date: May 2019
Location: Twickenham / U.K.
Posts: 715
Awesome, thanks DanielAllsopp and jotd. checking it out now
fxgogo is offline  
Old 06 October 2021, 19:32   #13
Reynolds
Alien Breeder
 
Reynolds's Avatar
 
Join Date: Dec 2007
Location: Szigetszentmiklos / Hungary
Age: 46
Posts: 1,096
Quote:
Originally Posted by rothers View Post
... just waiting on the A500 thread to be updated to see if the port there is abandoned or not...
You shouldn't wait but take the lead with your port. Keep it moving!
Reynolds is offline  
Old 07 October 2021, 10:48   #14
malko
Ex nihilo nihil
 
malko's Avatar
 
Join Date: Oct 2017
Location: CH
Posts: 4,856
Quote:
Originally Posted by Reynolds View Post
You shouldn't wait but take the lead with your port. Keep it moving!
I quite agree

(if you begin yours, it doesn't meant that the other version has to be stopped - it just means that we may finish by having two versions ).
malko is offline  
Old 07 October 2021, 10:58   #15
S0ulA55a551n
Registered User
 
S0ulA55a551n's Avatar
 
Join Date: Nov 2010
Location: South Wales
Age: 46
Posts: 934
Quote:
Originally Posted by rothers View Post
...... I'd say Robocop2 on Amiga is actually beyond the arcade engine.....
I am not sure I agree, the visuals on Robocop 2 are no where near the quality of Robocop arcade.
S0ulA55a551n is offline  
Old 07 October 2021, 11:41   #16
acidbottle
Registered User
 
acidbottle's Avatar
 
Join Date: Jul 2018
Location: Scotland
Posts: 821
Agree with the above, robocop 2 looks inferior to first one, think the kung fu master remake looks way better than robo2, which is a fair-ish style comparison.
acidbottle is offline  
Old 07 October 2021, 13:30   #17
rothers
Registered User
 
Join Date: Apr 2018
Location: UK
Posts: 487
Quote:
Originally Posted by S0ulA55a551n View Post
I am not sure I agree, the visuals on Robocop 2 are no where near the quality of Robocop arcade.

Not the graphics, the engine.


Skip and watch the final battle in Robocop2 on the Amiga, it's epic! Really shows off the engine.
rothers is offline  
Old 07 October 2021, 15:32   #18
S0ulA55a551n
Registered User
 
S0ulA55a551n's Avatar
 
Join Date: Nov 2010
Location: South Wales
Age: 46
Posts: 934
Quote:
Originally Posted by rothers View Post
Not the graphics, the engine.


Skip and watch the final battle in Robocop2 on the Amiga, it's epic! Really shows off the engine.
How do you have an engine without graphics? What is that engine doing ?

I mean you can have a great engine that can quickly move things around calculate physics etc etc, but if the graphics are then mode O amtrad cpc
S0ulA55a551n is offline  
Old 07 October 2021, 17:16   #19
jotd
This cat is no more
 
jotd's Avatar
 
Join Date: Dec 2004
Location: FRANCE
Age: 52
Posts: 8,162
it's pretty tough to separate an engine from the actual game. The engine is built around the game and not the other way round.
jotd is online now  
Old 08 October 2021, 10:35   #20
gimbal
cheeky scoundrel
 
gimbal's Avatar
 
Join Date: Nov 2004
Location: Spijkenisse/Netherlands
Age: 42
Posts: 6,908
Quote:
Originally Posted by jotd View Post
it's pretty tough to separate an engine from the actual game. The engine is built around the game and not the other way round.
Another way to say that is that there is no engine, only a game. You can copy over bits and pieces of it to a new game.
gimbal 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
Robocop 3 Help rodi support.Games 23 25 May 2006 16:51
Robocop 3D Souleh support.Games 12 20 June 2004 20:59
Robocop 3 Parsec support.Games 8 06 July 2003 03:58
robocop 3 Unregistered support.WinUAE 10 04 September 2002 16:23
Robocop 3 turk182 request.Old Rare Games 20 25 November 2001 09:49

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 22:55.

Top

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