English Amiga Board


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

 
 
Thread Tools
Old 22 September 2019, 07:44   #21
Lazycow
Registered User
 
Lazycow's Avatar
 
Join Date: Oct 2014
Location: Germany
Posts: 195
I'm still working on the level design of the advanced version and no Amiga graphics will be made until the levels are finished. Nothing to show, yet...
Lazycow is offline  
Old 25 October 2019, 18:41   #22
Lazycow
Registered User
 
Lazycow's Avatar
 
Join Date: Oct 2014
Location: Germany
Posts: 195
Small update: I successfully added clipping support to my low level code. So instead of reserving additional chipmem around the screen for all the blitter objects that want to leave the visible area, the graphics will just be clipped away. This hopefully frees enough valueable chipmem for the bigger graphics set of Wolfling.

And I have discovered why vbcc couldn't compile Powerglove with activated optimizations:
The assembler blitting subroutines didn't save all registers to the stack! I have fixed this and now Wolfling can be compiled with -O4 ...
Lazycow is offline  
Old 25 October 2019, 18:47   #23
Gzegzolka
Registered User
 
Join Date: Feb 2014
Location: Warszawa / Polska
Posts: 1,858
Good to hear that
Gzegzolka is offline  
Old 25 October 2019, 19:19   #24
malko
Ex nihilo nihil
 
malko's Avatar
 
Join Date: Oct 2017
Location: CH
Posts: 4,856
Waiting for this game. Hope everything will roll for the development
malko is offline  
Old 26 October 2019, 00:34   #25
phx
Natteravn
 
phx's Avatar
 
Join Date: Nov 2009
Location: Herford / Germany
Posts: 2,496
Quote:
Originally Posted by Lazycow View Post
I successfully added clipping support to my low level code. So instead of reserving additional chipmem around the screen for all the blitter objects that want to leave the visible area, the graphics will just be clipped away.
Nice! On all four borders? When I decided to do clipping I realized that clipping at the top and bottom is sufficient, because you need three extra columns for horizontal scrolling anyway. So, assuming tiles are 16 pixels, BOBs up to a width of 48 don‘t have to be clipped. You won‘t save any memory. What‘s the largest BOB in Wolfling?
phx is offline  
Old 26 October 2019, 13:20   #26
Lazycow
Registered User
 
Lazycow's Avatar
 
Join Date: Oct 2014
Location: Germany
Posts: 195
@phx: Wolfling's boss enemy is 48x48 pixel and yes, it's vertical clipping only for now. (because of your reasons)

But I'm planning to release my Amiga low level code as a link lib for everyone and then it should support horizontal clipping as well.
(Would anyone be interested in such a lib at all?)


Nevertheless, for 16x16 tiles you only need 32 extra pixels (320+32=352 pixels) and then 48 pixel blobs would need horizontal clipping! Here's an example with a 320x256 pixel screen and a 352x256 pixel bitmap.
Lazycow is offline  
Old 26 October 2019, 14:54   #27
Raislin77it
Zone Friend
 
Raislin77it's Avatar
 
Join Date: Jan 2005
Location: italy
Age: 46
Posts: 244
Quote:
Originally Posted by Lazycow View Post
(Would anyone be interested in such a lib at all?)
yes absolutely
Raislin77it is offline  
Old 27 October 2019, 01:34   #28
phx
Natteravn
 
phx's Avatar
 
Join Date: Nov 2009
Location: Herford / Germany
Posts: 2,496
Quote:
Originally Posted by Lazycow View Post
Nevertheless, for 16x16 tiles you only need 32 extra pixels (320+32=352 pixels)
You are probably right. Very good example! Now I even remember that we already discussed that some time ago, but I must have been a lazy cow and didn‘t verify that properly.
phx is offline  
Old 28 June 2020, 14:24   #29
Raislin77it
Zone Friend
 
Raislin77it's Avatar
 
Join Date: Jan 2005
Location: italy
Age: 46
Posts: 244
Quote:
Originally Posted by Lazycow View Post
But I'm planning to release my Amiga low level code as a link lib for everyone and then it should support horizontal clipping as well.
(Would anyone be interested in such a lib at all?)
a bump to remaind the lib lazycow
Raislin77it is offline  
Old 30 June 2020, 13:23   #30
Revenile
Registered User
 
Revenile's Avatar
 
Join Date: May 2019
Location: USA
Posts: 57
Hope to see an update on this one soon. I have the C64 version in my emulation library, and would love to have the Amiga version with the new features. Powerglove Reloaded is great, so I'm excited by this one. No rush obviously, just been quite a while since there was an update.
Revenile is offline  
Old 25 July 2020, 16:28   #31
Lazycow
Registered User
 
Lazycow's Avatar
 
Join Date: Oct 2014
Location: Germany
Posts: 195
Small status update: The current working title of the game is "Wolfling reloaded", because it will have some new features. (Just like Powerglove reloaded had some new features) The 2nd level is already playable, but I am still working on the 3rd (and final) level. (slow progress, sorry)

@Raislin77: I have already released Wolfling's NES low level code as "lazyNES" lib for vbcc6502, see here: http://forums.nesdev.com/viewtopic.php?f=2&t=20226

The upcoming lib with the Amiga low level code would be more or less like that, including some examples, but for vbcc68k... (and not before the game is finished)
Lazycow is offline  
Old 25 July 2020, 18:19   #32
Raislin77it
Zone Friend
 
Raislin77it's Avatar
 
Join Date: Jan 2005
Location: italy
Age: 46
Posts: 244
Quote:
Originally Posted by Lazycow View Post
@Raislin77: I have already released Wolfling's NES low level code as "lazyNES" lib for vbcc6502, see here: http://forums.nesdev.com/viewtopic.php?f=2&t=20226


yes, i have it

Quote:
Originally Posted by Lazycow View Post
The upcoming lib with the Amiga low level code would be more or less like that, including some examples, but for vbcc68k... (and not before the game is finished)
ok, if it's like the nes lib i can't wait
Raislin77it is offline  
Old 26 July 2020, 21:33   #33
ovale
Registered User
 
Join Date: Jun 2014
Location: milan / italy
Posts: 174
Quote:
Originally Posted by Lazycow View Post
The upcoming lib with the Amiga low level code would be more or less like that, including some examples, but for vbcc68k... (and not before the game is finished)
top!
ovale is offline  
Old 26 July 2020, 23:07   #34
pipper
Registered User
 
Join Date: Jul 2017
Location: San Jose
Posts: 652
Quote:
Originally Posted by Lazycow View Post

Nevertheless, for 16x16 tiles you only need 32 extra pixels (320+32=352 pixels) and then 48 pixel blobs would need horizontal clipping! Here's an example with a 320x256 pixel screen and a 352x256 pixel bitmap.
I love that picture. Describes nicely and visually how horizontal scrolling works!
pipper is offline  
Old 27 July 2020, 00:02   #35
phx
Natteravn
 
phx's Avatar
 
Join Date: Nov 2009
Location: Herford / Germany
Posts: 2,496
Quote:
Originally Posted by Lazycow View Post
Small status update: The current working title of the game is "Wolfling reloaded", because it will have some new features
Yes! It's not dead!
phx is offline  
Old 29 July 2020, 07:16   #36
Lazycow
Registered User
 
Lazycow's Avatar
 
Join Date: Oct 2014
Location: Germany
Posts: 195
Quote:
Originally Posted by Raislin77it View Post
ok, if it's like the nes lib i can't wait
The libs won't be compatible, but they're very similar, with the same featureset: Background build out of 8x8 pixel blocks, 4way scrollling, optional split, moving objects (blobs). No audio, but happily cooperates with phx's ptplayer lib. Maybe even the same examples.

But back to Wolfling, early music preview:

[ Show youtube player ]
Lazycow is offline  
Old 29 July 2020, 13:18   #37
Predseda
Puttymoon inhabitant
 
Predseda's Avatar
 
Join Date: Mar 2007
Location: Tromaville
Age: 46
Posts: 7,537
Send a message via ICQ to Predseda
I like it very much.
Predseda is online now  
Old 07 August 2020, 23:55   #38
Predseda
Puttymoon inhabitant
 
Predseda's Avatar
 
Join Date: Mar 2007
Location: Tromaville
Age: 46
Posts: 7,537
Send a message via ICQ to Predseda
Just completed the NES version. Next: C64. Looking forward, very enjoyable game!
Predseda is online now  
Old 08 August 2020, 23:49   #39
Predseda
Puttymoon inhabitant
 
Predseda's Avatar
 
Join Date: Mar 2007
Location: Tromaville
Age: 46
Posts: 7,537
Send a message via ICQ to Predseda
Just completed the C64 version. Next: Wolfling Reloaded, whatever retro platform will be first!
Predseda is online now  
Old 14 October 2021, 10:10   #40
jurassicman
Registered User
 
jurassicman's Avatar
 
Join Date: Dec 2017
Location: Sassari/Italy
Posts: 867
Hi Lazycow! Do you have any news about this game (and maybe monsters 1.1...)
jurassicman 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
[Ongoing] Powerglove Lazycow project.Amiga Game Factory 335 14 March 2020 09:17
[ongoing] Berusky BSzili project.Amiga Game Factory 23 29 September 2019 21:08
[Ongoing] Amimon darkhog project.Amiga Game Factory 3 01 April 2017 14:19
[ongoing] Catagon BSzili project.Amiga Game Factory 17 14 August 2015 19:18
Is this still an ongoing project? garyg AMR suggestions and feedback 17 04 October 2010 22:25

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 10:13.

Top

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