Ultimate Amiga
Network Boards => AMOS Language Discussion => AMOS Factory => AMOS Professional Forum => Topic started by: xboxisfinished on May 05, 2015, 12:36:56 AM
-
Hey guys,
I have attached a source code here because I am having an issue with the scrolling. If you scroll all the way down for the data area you will find there are 14 rows and 19 columns. So if you multiply them in total it should equal 266. I do know that the screen height is only 200. I take it should have some sprites outside the boundary of the screen. So when I use the function screen offset to go down it repeats the original screen but with gibberish colours instead of displaying the remaining objects. I am taking it I am going outside the boundary and I am looping back again to the actual screen and causing graphics glitches. I don't know why it is doing that. I am following the manual and still have issues.
I have pretty much attached the source code here in hopes someone could shed some light into the matter. I did not paste the graphics, so someone have to use their own to test this one out for me.
Thanks in advance.
-
Not easy to give any opinion without the missing file. Could you post it as a *.zip please?
It looks like you're trying to scroll a screen using Screen Offset. This only works where you have opened a screen larger than what's being displayed. You can then use Screen Offset to scroll around that area, but NOT outside that area. Eg. If you define a screen 640 x 512 and then display it in a 320 x 256 view (view = what you see on the monitor) you can scroll around within that area. But you will get graphics glitches if you move your 320 x 256 view anywhere outside of that 640 x 512 boundary.
-
Actually what I want to do is make the scrolling more smoother than the way it is and I have issue where the character disappears after a certain amount of scrolling. By all means I will send it all tomorrow.
Is it possible I can have a big size map to scroll the screen without having to have A VERY huge screen open where it drains chip RAM to zero? If not, then the only request I have is it possible I can use the FAST RAM to open this huge big screen and not the chip RAM? I am always left with 200 KB CHIP RAM because the engine uses 100% Chip RAM and not a single Fast RAM.
-
@xboxisfinished
How many tiles do you want a screen at once? How big are the tiles? I assume that since you say your display is 200 pixels tall, you're using 60 Hz NTSC scan rates instead of the 50 Hz PAL modes most Europeans and Australians are used to. The most pixels you'll need to do an 8-way scroller is 2 times the width of a display plus 2 tile widths and 2 times the height of the display plus two tile heights.
The idea of making a fast tile scroller is to blit tiles behind you as well as ahead of you so that when you reach the end of the screen, there will be an exact duplicate at the opposite side. The plan of how to do this is documented in http://aminet.net/package/dev/src/ScrollingTrick (http://aminet.net/package/dev/src/ScrollingTrick). Don't worry about the licensing, Georg has assured me that he now considers this documentation public domain.
-
SamuraiCrow
I take it even though the source code is not AMOS I will be able to somehow convert it to AMOS?
-
SamuraiCrow
I take it even though the source code is not AMOS I will be able to somehow convert it to AMOS?
It's an example of course you can convert it to AMOS taking the theory and applying it using AMOS and it's command set.
-
The source is not going to be as helpful as the documentation.
-
The Ultimate Amos book has some great guides on scrolling technique .... Is that one available here?
-
I like Hungry Horace advice a lot more!! I have reached where I am now in my game development all by reading books and checking AMOS code sample and trying it out. If there is an actual book that teaches me how to make smoother better scrolling I will love that.
I just want to ask this question if the answer is yes I will do it right away. Would posting right now in the next reply an attachment of my source code with the graphics it is using and having you guys see what I have written so far, help me by you guys checking my code and advising me how to write it better, more efficient and giving me a solution for a smooth screen scrolling? If the answer is no and it the only reply I will get is a QL with more documentation to read, then can I skip attaching the source code and sending me this document link instead?
Thanks in advance.
-
I have decided to attach the source code here because I find the screen scrolling non smooth and annoying. I really want it to be smooth. I am hoping someone could point out where I went wrong in the source code and point me to the right direction.
-
Actually what I want to do is make the scrolling more smoother than the way it is and I have issue where the character disappears after a certain amount of scrolling. By all means I will send it all tomorrow.
Is it possible I can have a big size map to scroll the screen without having to have A VERY huge screen open where it drains chip RAM to zero? If not, then the only request I have is it possible I can use the FAST RAM to open this huge big screen and not the chip RAM? I am always left with 200 KB CHIP RAM because the engine uses 100% Chip RAM and not a single Fast RAM.
I'm surprised you only get 200Kb chip RAM left. With the 2Mb fast RAM you've installed, I would have thought that you'd get more than that. With a 16-colour hires, non-interlaced Workbench and AMOS Pro running, I'm seeing only approximately 167Kb chip RAM in use. Which, in your machine should give you over 300Kb chip RAM free. Is there any way you can verify that fast RAM is being recognised okay? If it is, check for other things that might be chewing up precious chip RAM. Eg. interlaced and/or 32 colour workbench screens or some other applications running. Anyone know of any way to check what's using the RAM?
-
My biggest issue is that everything is used in chip RAM. It is as if the Fast RAM does not exist. That what frustrates me. I was hoping 90% of my program uses Fast RAM and only 10% use chip RAM.
-
My biggest issue is that everything is used in chip RAM. It is as if the Fast RAM does not exist. That what frustrates me. I was hoping 90% of my program uses Fast RAM and only 10% use chip RAM.
You can specify which memory to use in AMOS using the "reserve as" command if i remember correctly.
-
My biggest issue is that everything is used in chip RAM. It is as if the Fast RAM does not exist. That what frustrates me. I was hoping 90% of my program uses Fast RAM and only 10% use chip RAM.
You can specify which memory to use in AMOS using the "reserve as" command if i remember correctly.
understood. but is that it? just say reverse as fast blah blah blah and it automatically knows to use fast ram instead of chip ram? No other thing need to be done?
-
No not quite that simple i think the reserve as command is used to set aside an area of memory for your arrays/variables which can consume a lot of memory depending on the type of program you're making and how many dimensions your arrays contain so it is a useful command if used correctly.
Basically you need to do a little math to work how much memory your arrays take up then reserve that area of memory in fast RAM to store those arrays but you will run into problems when you try to run your game on different AMIGA's like ones with 512k chip + 512k fast or 1MB chip there are a lot of configurations and if you want your game to run on all with 1MB and WB 1.3 or > then you'll need to work this into your code.
AMOS WILL ALWAYS USE CHIP RAM FIRST UNLESS TOLD OTHERWISE.
Wish i could help you more but it's been over 15 years since i used AMOS but it is all coming back to me slowly since finding this site.
If you're struggling may i suggest you begin with Easy AMOS that's where i began then when onto AMOS the creator and only now am i venturing into AMOS Pro because at the time i couldn't afford it got AMOS the creator of of an Amiga Format cover disk back in the day.
Ahh the memories. ;)
-
understood. but is that it? just say reverse as fast blah blah blah and it automatically knows to use fast ram instead of chip ram? No other thing need to be done?
I don't recall a reserve as fast instruction. I just read page 05.09.03 (Memory Banks) of the digital version of the AMOS Pro manual.
It seems that Reserve As uses fast RAM as default (if detected) and Reserve As Chip forces it to use chip RAM only.
Apparently this program (found on the aforementioned page) can tell whether it's using fast RAM to store the bank or not (I have not tested it):
M=Fast Free : Rem Give the amount of available FAST memory
Reserve As Work 10,1000
If M<>Fast Free
Print "The Data has been stored in FAST Ram"
Else
Print "Sorry, there is only CHIP Ram available"
End If
-
Like i said 15 years but its all coming back :D
-
understood. but is that it? just say reverse as fast blah blah blah and it automatically knows to use fast ram instead of chip ram? No other thing need to be done?
I don't recall a reserve as fast instruction. I just read page 05.09.03 (Memory Banks) of the digital version of the AMOS Pro manual.
It seems that Reserve As uses fast RAM as default (if detected) and Reserve As Chip forces it to use chip RAM only.
Apparently this program (found on the aforementioned page) can tell whether it's using fast RAM to store the bank or not (I have not tested it):
M=Fast Free : Rem Give the amount of available FAST memory
Reserve As Work 10,1000
If M<>Fast Free
Print "The Data has been stored in FAST Ram"
Else
Print "Sorry, there is only CHIP Ram available"
End If
There is no way that data is stored in fast ram since there is no other line telling it that the print command uses fast ram. It should technically always say "Sorry, there is only CHIP Ram available" because that print command is used in Chip RAM. Otherwise with that logic, all I had to do is say:
reverse as work 10,1000 and followed by
LEVELOBJECTS(361)
So technically these two lines there will make the program use Fast RAM instead of Chip RAM. If that's all it takes I can do it in less than 1 second command line. However, I was informed that is not enough and that there is a lot more complex code need to be done to force AMOS to put things in Fast RAM.
-
AMOS WILL ALWAYS USE CHIP RAM FIRST UNLESS TOLD OTHERWISE.
Where on earth did you get that idea?
AMOS Pro allocates RAM according to requirements. So, for Memory Banks, it will allocate according to what you specify. The ONLY exception is if it runs out of available fast RAM. Then it will still allocate the required memory but has no choice other than to use chip RAM:
Reserve as Work BankNumber,LengthInBytes
Allocates a temporary bank in fast RAM. The bank will no longer be available when AMOS closes and its memory will be freed.
Reserve as Chip Work BankNumber,LengthInBytes
Allocates a temporary bank in chip RAM. The bank will no longer be available when AMOS closes and its memory will be freed.
Reserve as Data BankNumber,LengthInBytes
Allocates a permanent bank in fast RAM. The bank will be integrated into the currently loaded program. It will load and save with the program.
Reserve as Chip Data BankNumber,LengthInBytes
Allocates a permanent bank in chip RAM. The bank will be integrated into the currently loaded program. It will load and save with the program.
In all the above cases, chip RAM will be used if no fast RAM is available.
For permanent banks, they retain their characteristics when integrated into a program and loaded with it.
AMOS Pro takes care of all memory allocation and clean up. So no action is required from the user. If you crash AMOS however, be aware that you may have allocated memory (i.e. "known" to AmigaOS) that hasn't been de-allocated.
There is no way that data is stored in fast ram since there is no other line telling it that the print command uses fast ram. It should technically always say "Sorry, there is only CHIP Ram available" because that print command is used in Chip RAM. Otherwise with that logic, all I had to do is say:
reverse as work 10,1000 and followed by
LEVELOBJECTS(361)
So technically these two lines there will make the program use Fast RAM instead of Chip RAM. If that's all it takes I can do it in less than 1 second command line. However, I was informed that is not enough and that there is a lot more complex code need to be done to force AMOS to put things in Fast RAM.
Get a grip! AMOS Pro allocates all variables, strings and arrays in fast RAM, if it's available. The only chip RAM it uses is for whatever samples, sprites, bobs, screens and windows are used in a program.
Do not confuse allocating an array with allocating a bank:
- An array is a component of AMOS Pro Basic. It is something that AMOS controls. You can just use it without worrying about the details. Incidentally, if you're using arrays of strings, or a lot of string manipulation, AMOS Pro will switch in its garbage collection every now and again. This may come at an unexpected and inconvenient time in your program. You can dictate when this happens by simply adding a line X=Free to force string garbage cleanup when you want it to happen.
- A Memory Bank is a chunk of memory that you've requested. Apart from knowing where it is, what length it is and putting it into its allocated memory list, AMOS knows nothing about what you want to do with it. If it's a Work bank, AMOS will clean up your mess when you quit. If it's a Data bank, it will be saved with your program. And AMOS will still clean up your mess when you quit.
-
Thank you for everything and please forgive me for sounding rude or aggressive. :)
-
Well that's the end of me giving any advice seems bruceuncle has all the answers.
-
Well that's the end of me giving any advice seems bruceuncle has all the answers.
Certainly not all ;D . It's just a by-product of the bug fixing and correcting the docs/help file. I have to check and test each instruction (apart from a few device ones, where I don't have the hardware). So it's inevitable that I've built up an in-depth knowledge of the AMOS instruction set. However, that doesn't mean I've got a lot of knowledge about using AMOS. So please don't let my posts put you off posting to the forum. My apologies if I come across a bit heavy handed at times. Just put it down to "grumpy old man" syndrome... ;)
-
Well that's the end of me giving any advice seems bruceuncle has all the answers.
Certainly not all ;D . It's just a by-product of the bug fixing and correcting the docs/help file. I have to check and test each instruction (apart from a few device ones, where I don't have the hardware). So it's inevitable that I've built up an in-depth knowledge of the AMOS instruction set. However, that doesn't mean I've got a lot of knowledge about using AMOS. So please don't let my posts put you off posting to the forum. My apologies if I come across a bit heavy handed at times. Just put it down to "grumpy old man" syndrome... ;)
Agreed.
As in most forums, you'll always have a few 'experts' on a subject. Sometimes other people beat you to helping someone, and sometimes they will correct things that have been said in error.
It's the nature of forums, and personally I like having others back me up on things that I said, or correct me on things I got wrong.