English Amiga Board


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

 
 
Thread Tools
Old 07 June 2021, 01:13   #881
Neeso
Registered User
 
Join Date: May 2021
Location: Italy
Posts: 7
@breech: that's awesome! If someone manages to make a puzzle game we have all genres covered (well almost!)

@Mixel: thanks for sharing, very interesting!

Question: I was trying to setup a dialogue with characters pictures using the elements inside the (dialogue) panel and control them using counters (0-1 to toggle a certain picture on/off) but those seem to be ignored completely.

To make sure I also tried with the same elements/variables of the hud with no luck.

Does anyone have ever tried to achieve this?
Neeso is offline  
Old 07 June 2021, 02:11   #882
Mixel
Registered User
 
Mixel's Avatar
 
Join Date: Jun 2020
Location: Leeds, UK
Posts: 770
Quote:
Originally Posted by Neeso View Post
To make sure I also tried with the same elements/variables of the hud with no luck.

Does anyone have ever tried to achieve this?
I don’t think it works yet but Earok hinted at this sort of stuff being the focus for the next big update.. http://eab.abime.net/showpost.php?p=...&postcount=805 - in that post..

I’m super excited about that too because of the flexibility it should give me when working on Visual Novels.. (I might use them in CMOhn too, like in Cave Story!) I have tried putting dialogue text on full screen graphical menu panels, and that didn’t work at all.. I’m guessing text doesn’t currently play nicely with anything else at all?
Mixel is offline  
Old 07 June 2021, 13:06   #883
Neeso
Registered User
 
Join Date: May 2021
Location: Italy
Posts: 7
Thanks @Mixel, I wasn't looking for the feature itself (portraits), just the ability to use the "Elements" inside a dialogue panel which doesn't seem possible or is just not working.

I will wait for the real feature then
Neeso is offline  
Old 08 June 2021, 08:47   #884
earok
Registered User
 
Join Date: Dec 2013
Location: Auckland
Posts: 3,539
Found some time in my holiday to do a little bit of work on Scorpion, these are checked in to experimental:

A) Ability to add unlimited elements to a panel (more than just 8). This *might* be useful for some sort of inventory screen where you've got a grid of items, but it hasn't been extensively tested.

B) Very much a "use at your own risk" kind of thing, but you can now run AmigaDOS commands inside Scorpion. I may potentially remove it again. The use case I had for it was setting environment variables for a Scorpion game boot menu.
earok is offline  
Old 08 June 2021, 18:44   #885
saimon69
J.M.D - Bedroom Musician
 
Join Date: Apr 2014
Location: los angeles,ca
Posts: 3,516
Quote:
Originally Posted by earok View Post
Found some time in my holiday to do a little bit of work on Scorpion, these are checked in to experimental:

B) Very much a "use at your own risk" kind of thing, but you can now run AmigaDOS commands inside Scorpion. I may potentially remove it again. The use case I had for it was setting environment variables for a Scorpion game boot menu.
I would not remove it, rather make it limited unless someone want to do a dopus clone using Scorpion ^^ however, if you think of a limit case such as Doki Doki literature club, might come handy
saimon69 is offline  
Old 10 June 2021, 13:04   #886
Lemming880
Registered User
 
Join Date: Nov 2014
Location: Netherlands
Posts: 260
Found something strange. When I set an animation to 'Only Sprite', the black color in my graphics changes from greyish black to pitch black. My graphics have 16 colors. Color 0 is pitch black and I don't use it for the graphics, just as background around the play screen. Color 15 is greyish black and that's the one I use for the graphics. After setting an animation to Only Sprite, color 15 changes to color 0.
Lemming880 is offline  
Old 10 June 2021, 13:40   #887
earok
Registered User
 
Join Date: Dec 2013
Location: Auckland
Posts: 3,539
Color15 is not part of the sprite color palette, only colors 16-31

What you're describing may make sense since a Bob can use color 15 but a sprite cannot. So the black you're seeing must be a different color in the range 16-31
earok is offline  
Old 10 June 2021, 14:26   #888
Lemming880
Registered User
 
Join Date: Nov 2014
Location: Netherlands
Posts: 260
Yea I just found out that you added the same colors from 0-15 to 16-31. I understand now that sprites use slots 16-31. But whatever colors I try, and completely remove pitch black from the palette and the sprite, the sprite still has pitch black. I will investigate further.

Last edited by Lemming880; 10 June 2021 at 16:26. Reason: typo
Lemming880 is offline  
Old 10 June 2021, 15:17   #889
earok
Registered User
 
Join Date: Dec 2013
Location: Auckland
Posts: 3,539
The other thing it could be is from the parallax palette (which uses 0, 29, 30 and 31)
earok is offline  
Old 10 June 2021, 16:42   #890
acidbottle
Registered User
 
acidbottle's Avatar
 
Join Date: Jul 2018
Location: Scotland
Posts: 821


A little taster of something I'm working on. An arcade port of Star Force.

Help needed though. I have used the bump player and v axis trick but need to also have the map camera move left and right. The code for follow camera and camera box can do this easy on its own. However, it does not function when I start using the v scroll.

I believe it is doable until someone says it isn't
acidbottle is offline  
Old 10 June 2021, 17:03   #891
Mixel
Registered User
 
Mixel's Avatar
 
Join Date: Jun 2020
Location: Leeds, UK
Posts: 770
Woo that looks great!

Have you tried using a codeblock in the player ship actor as a 0 tick repeating timer event that sets player_yspeed to -2 or whatever, and have the camera just follow the ship and setting a massive camera box?, I have no idea if this would work well in a vertical shooter as I've not tried it, but it.. Might work?
Mixel is offline  
Old 10 June 2021, 22:25   #892
Lemming880
Registered User
 
Join Date: Nov 2014
Location: Netherlands
Posts: 260
Quote:
Originally Posted by earok View Post
The other thing it could be is from the parallax palette (which uses 0, 29, 30 and 31)
Found a solution. I removed colors 29, 30 and 31. And I've put greyish-black on 12 and 28. So I lost 3 colors for sprites but it works.
Lemming880 is offline  
Old 11 June 2021, 00:10   #893
acidbottle
Registered User
 
acidbottle's Avatar
 
Join Date: Jul 2018
Location: Scotland
Posts: 821
Quote:
Originally Posted by Mixel View Post
Woo that looks great!

Have you tried using a codeblock in the player ship actor as a 0 tick repeating timer event that sets player_yspeed to -2 or whatever, and have the camera just follow the ship and setting a massive camera box?, I have no idea if this would work well in a vertical shooter as I've not tried it, but it.. Might work?
Thanks Mixel

Actually it is everyone's creations in scorpion that have inspired a lot. It is simply incredible what is being achieved. To code this in Blitz, assembler or anything else would have taken 10 times longer!

Anyways, you also helped inspire a half decent workaround, woohoo! By using 2 separate code block activations within the actor's leave screen parameters, the x axis is now shifting back and forth. Only trouble is, it is on leave screen so the ship is having to reach the very edge of the playfield to activate the move. Camera box isn't playing dice, for my purpose, so far but its a good start.

Also a good shout with Aesprite, fantastic program for creating game sprites and handling palettes that is
acidbottle is offline  
Old 11 June 2021, 00:52   #894
earok
Registered User
 
Join Date: Dec 2013
Location: Auckland
Posts: 3,539
Wow, looking really cool!

I'd personally try something like this on every frame:

Quote:
camera_y = camera_y - 1
player_y = player_y - 1
camera_x = camera_x + control_x
You could maybe make the starfield parallax, vertical parallax is theoretically possible but untested (it'd also burn up a fair amount of DMA since it'd be on every single line of the display).

It'd also be extremely limited as you'd essentially just have a repeating 32x32 pattern vertically and horizontally down the screen, but it would mean that your starfield would scroll slower than the asteroid bases.

Edit: Alternatively, if you had a static starfield that didn't move at all, you could have a non-repeating pattern vertically, though still one horizontally

Last edited by earok; 11 June 2021 at 00:57.
earok is offline  
Old 11 June 2021, 20:27   #895
acidbottle
Registered User
 
acidbottle's Avatar
 
Join Date: Jul 2018
Location: Scotland
Posts: 821
Brilliant, thanks earok!

I actually wasn't sure if it was possible to have 1 giant non repeating pattern scroll underneath, but if so then that is definitely the way to go.

Still not managed the perfect x axis scroll but it is definitely possible and am very close, probably easy enough with the correct logic and codeblocks.

Is it theoretically possible to load a new palette per level to? Not tried to yet but just wondering.
acidbottle is offline  
Old 11 June 2021, 20:49   #896
Mixel
Registered User
 
Mixel's Avatar
 
Join Date: Jun 2020
Location: Leeds, UK
Posts: 770
Quote:
Originally Posted by acidbottle View Post
Thanks Mixel
Actually it is everyone's creations in scorpion that have inspired a lot. It is simply incredible what is being achieved. To code this in Blitz, assembler or anything else would have taken 10 times longer!
TY! Agreed. It's a massive game changer and I wouldnt be here without it. (on EAB/making Amiga games, I mean, lol)

Quote:
Anyways, you also helped inspire a half decent workaround, woohoo! By using 2 separate code block activations within the actor's leave screen parameters, the x axis is now shifting back and forth. Only trouble is, it is on leave screen so the ship is having to reach the very edge of the playfield to activate the move. Camera box isn't playing dice, for my purpose, so far but its a good start.
I'm glad you're getting there working out how to do it.. Earok's method is more efficient than anything I'd have thought of, haha. I was going to suggest like a band in the middle of the map that if actorX left then it would add something to camera_x.. Somehow. The sort of thing you just end up iterating on a million times until you get what you want.

Quote:
Originally Posted by acidbottle View Post
Brilliant, thanks earok!
I actually wasn't sure if it was possible to have 1 giant non repeating pattern scroll underneath, but if so then that is definitely the way to go.
I wonder if you'll get any 18 block seam glitches if its that simple a backdrop.. If you have complex parallax things go a bit flaky every 18 tiles height.. Hmm. A vertical shooter would be difficult to design around those if they still happen?

Quote:
Is it theoretically possible to load a new palette per level to? Not tried to yet but just wondering.
Yup they're in Maps tab/set override Pal. And you can change the colours individually in codeblocks too.

Last edited by Mixel; 12 June 2021 at 00:55.
Mixel is offline  
Old 11 June 2021, 23:06   #897
hitm4n
Registered User
 
hitm4n's Avatar
 
Join Date: Nov 2006
Location: Lincoln, UK
Posts: 604
Starforce / Megaforce is pretty much my favourite vertical shooter, its a go-to game for me in MAME. Always used to seek it out when the Fair came (but only found it there a couple of years running, then never again), and would always look out for it in the arcades at the seaside. Sadly, rare to find, but i'd chuck a couple of quid in it at the seaside if i spotted it.

Keep us informed on progress please
hitm4n is offline  
Old 12 June 2021, 12:55   #898
acidbottle
Registered User
 
acidbottle's Avatar
 
Join Date: Jul 2018
Location: Scotland
Posts: 821
Its a great and vastly underrated game, not certain I can compete with the original roms haha! Will give it a decent shot tho.

If/when I have something reasonably good and tangible that can progress I will possibly start a WIP thread. Stay tuned!
acidbottle is offline  
Old 12 June 2021, 15:20   #899
Mixel
Registered User
 
Mixel's Avatar
 
Join Date: Jun 2020
Location: Leeds, UK
Posts: 770
Looking forward to it Acidbottle!

OK this is another useful thing to know in regard to sound effects..

Don't try to be clever like i did by reducing the bitrate of individual effects to ridiculously low levels in Audacity to save memory. If you go below 8000hz it seems to get increasingly flaky, but around the 4000hz mark and below some sounds just get hideously unreliable and come out like low growling noises - sometimes, it gets much more common when music is also playing but it still occasionally happens when it isnt..

Now all my sounds are 8000hz it seems cured!

Until today, 70% of the time you punched a trashcan (as you do!) it made a horrible bluuuurgh.. And about 50% of the time when I used my respawn points. - It only does it on real Amigas though, these bugs didn't happen at all in WinUAE..
Mixel is offline  
Old 14 June 2021, 20:38   #900
domkid
Registered User
 
Join Date: Apr 2021
Location: FRANCE
Posts: 93
hello everyone, little progress on my demo with Scorpion, parallax, new animation, new enemies ...
[ Show youtube player ]
domkid is offline  
 


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

Similar Threads
Thread Thread Starter Forum Replies Last Post
2D Platformer Engine carrion Coders. Blitz Basic 27 06 June 2019 14:35
New Chaos Engine!! arpz Retrogaming General Discussion 75 31 August 2013 22:20
F/S Warp engine 32 mb tabuhuso MarketPlace 0 24 February 2012 15:13
PC Engine CD TodaysForgotten Retrogaming General Discussion 47 13 May 2009 23:57
Scorpion (100% working) andreas request.Old Rare Games 13 01 August 2003 08:48

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 16:38.

Top

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