Ultimate Amiga
Network Boards => AMOS Language Discussion => AMOS Factory => AMOS Professional Forum => Topic started by: xboxisfinished on May 25, 2015, 12:18:44 PM
-
I seem to have a big problem with AMOS compiler. I run AMOS compiler from disk and I select to compile my game. When it is 100% compiled I attempt to run it, it exits with illegal function call. Yet, the very same source code that it compiled if I run it from the editor directly it works 100%.
I don't know what to do there.
-
Amos compiler is noturiously bad and when coding there are some things you have to avoid because they will not compile like certain procedure calls that's why i avoid using procedures alltogether in favour of subroutines.
Are you sure you compiled it correctly as there are a few choices to either compile it to run from the Amos editor or WB or you can make a self booting copy which isn't that hard you just need a blank disk with a boot block on it create an S folder and inside that folder use memacs to create a startup sequence which is as simple as putting the name of your compiled program in to it.
-
I have seen similar before, and some common faults i've found with the compiler...
- too many ELSE IF statements together.
- screens not open in compiled version (where opened by default in editor)
... it can be hard to debug, but one of the easiest things you can do is add an 'exit' routine into the code, where it displays a mesage and quit.
Then keep moving a call to this routine further and further through your (compiled) code until you find out what point it is failing. (i.e. when you dont see the exit message but the failure, you know where it went wrong)
The other option it to add debug messages throughout your code, that right some information about progress on the CLI... (i use CLI WRITE to do this, but that may be an AMCAF extension command) then run your compiled code from amiga CLI and see what the last debug message was to occur.
Once you've located where it's going wrong, you can work out what modification is needed.... it's probably only minor, but i appreciate it can be infurriating up until that point!
-
Horace is right, the default screen (Screen 0 I believe) is opened by the Editor as default when programs are run.
-
Horace is right, the default screen (Screen 0 I believe) is opened by the Editor as default when programs are run.
Are you saying I need to use Screen 0 in order to compile my game? I have an If statement that checks if you are using NTSC or PAL machine and based on that open appropriate screen size. I use Screen 1 for that. Is that wrong? Should I have used Screen 0 instead? Are you using I cannot put Screen open inside an If statement? By the way it is essential I use a lot of If statements in my game as I have turned it into a full blown RPG game. That means I will be using lots, lots and lots of If statement and or else if.
-
the points about ELSE IF and the SCREEN optison are totally separate - please do not confuse that there is any issue of having screen functions inside the IF statement (if everything is openned correctly)
The point being made is, that .. the AMOS Editor automaticalyl opens a default screen when you run it. Compiled code may not, unless you set the option to.
E.g the following should work in the Editor as a lone programme:
PRINT "hello"
This will print the word 'hello' to screen 0.
however, the compiled version may not work, and must include code to open the screen....
SCREEN OPEN 0,320,256,16,Lowres
PRINT "hello"
Perhaps the NTSC/PAL check requires one screen to already be open to test? If so, you can try something like this....
SCREEN OPEN 0,320,256,16,Lowres
SCREEN HIDE 0
IF NTSC = TRUE
SCREEN OPEN 1,320,200,16,Lowres
ELSE
SCREEN OPEN 1,320,256,16,Lowres
ENDIF
SCREEN CLOSE 0
On a totally separate matter, the problem with ELSE IF is not a problem of too many IF statments, so do not worry about your over all program size.
The following is absolutely fine:
IF A=0
DO SOMETHING
ENDIF
IF A=1
DO SOMETHING ELSE
ENDIF
IF A=2
DO SOMETHING ELSE
ENDIF
...
and this can continue forever without problem.
The issue arises when you have one IF statement, and too many ELSE IF statements with it. I cannot remember what the limit is. (30-40?)
so for example, although you could continue like this for a long time in the Editor, the compiled program may throw up a problem ...
IF A=0
DO SOMETHING
ELSEIF A=1
DO SOMETHING ELSE
ELSEIF A=2
DO SOMETHING ELSE
..
.. (more ELSE IF statmentsto go here)
..
ELSEIF A=64
DO SOMETHING ELSE
ENDIF
your best bet is still to debug the code and try and find the actual code that fails. without it, this is all speculation as to where the problem might be.
Another thought is that you have changed the AMOS interpretter settings, say to allow for a higher number of BOBS, but are compiling on a disk copy where the limit is set lower. On this basis, i would always recommend launching the editor from within the editor menu, to ensure consistancy of extensions, interpretter settings etc.
-
As Horace says or you could have as your first executable line "close screen 0" solves all known issues in that department.
-
As Horace says or you could have as your first executable line "close screen 0" solves all known issues in that department.
No, because that will work fine in the Editor. If you compile that you will get a "Screen not open" error in the compiled program.
I suspect it could be an issue with the Ntsc function, though I haven't had time to confirm it.
I know that the True and False functions have caused others occasional problems in the past - they don't always return the values they are supposed to, and I suspect it could be the same with the Ntsc function.
-
Still not working >< I have removed lots of else if from my program...still couple of more to remove for sure. I removed completely the NTSC from the equation....and still have a problem ><
-
Hmmm... if you feel like uploading your code I can take a look. 2 people working on the same problem should the solution quicker ;)
-
Still not working >< I have removed lots of else if from my program...still couple of more to remove for sure. I removed completely the NTSC from the equation....and still have a problem ><
Are you sure this is the problem, and used the debugging suggestion from above (using WRITE CLI) Have you identified the faulty routine in your code?
There is no point in removing ELSE IF statements unless you know that is the problem.
Also, did you try compiling directly from the editor?
Hmmm... if you feel like uploading your code I can take a look. 2 people working on the same problem should the solution quicker
I have to agree with this. Knowing the extent of the problem might also help with bug-fixes to the compiler later on.
-
Attached here is the source code as request. When I attempted to compile it from within AMOS it gives me error with missing extension or some sort. When I attempt to set interpret it gives me error with configuration when I load configuration and it gives me error when I click in any of the set settings.
Anyways here is the source code as requested.
P.S "Just so you know, I am not using WinUAE at all! I am using REAL Amiga computer to develop all my games. :)"
-
Attached here is the source code as request. When I attempted to compile it from within AMOS it gives me error with missing extension or some sort. When I attempt to set interpret it gives me error with configuration when I load configuration and it gives me error when I click in any of the set settings.
Anyways here is the source code as requested.
P.S "Just so you know, I am not using WinUAE at all! I am using REAL Amiga computer to develop all my games. :)"
I suspect some Libs are missing try compiling it using the compiler from WB
-
Attached here is the source code as request. When I attempted to compile it from within AMOS it gives me error with missing extension or some sort. When I attempt to set interpret it gives me error with configuration when I load configuration and it gives me error when I click in any of the set settings.
Anyways here is the source code as requested.
P.S "Just so you know, I am not using WinUAE at all! I am using REAL Amiga computer to develop all my games. :)"
I suspect some Libs are missing try compiling it using the compiler from WB
In my first attempt of compiling I said include ALL AMOS library in the program and still fails miserably. So that did not work at all. You have my source code, can you please check it out with the compiler? I possibly may have hit a bug or something..or at least helped find a solution that got written here for future people to avoid going through the same frustration as me.
-
Attached here is the source code as request. When I attempted to compile it from within AMOS it gives me error with missing extension or some sort. When I attempt to set interpret it gives me error with configuration when I load configuration and it gives me error when I click in any of the set settings.
Thanks for the source code. I'm currently trying to understand the details of the AMOS compiler sources. So any examples of stuff that either won't compile or gives errors when run are most appreciated. That way I stand some chance of nailing the problems in the debugger.
As a side note. It's great to see how you've taken to AMOS. Well done for getting involved. ;) And I can promise you a much improved version in the future. It just takes time...
-
Attached here is the source code as request. When I attempted to compile it from within AMOS it gives me error with missing extension or some sort. When I attempt to set interpret it gives me error with configuration when I load configuration and it gives me error when I click in any of the set settings.
Thanks for the source code. I'm currently trying to understand the details of the AMOS compiler sources. So any examples of stuff that either won't compile or gives errors when run are most appreciated. That way I stand some chance of nailing the problems in the debugger.
As a side note. It's great to see how you've taken to AMOS. Well done for getting involved. ;) And I can promise you a much improved version in the future. It just takes time...
Thank you so much :D What do you think of my coding style and what I have done so far? Please the game use the arrow keys to move arrow then press P and see what happens. Right now make sure you don't step on the item yet, because if you step over the item in the array it will be deleted and replaced by empty space. I am working on fixing this in the future, but right now step beside an item and press P and try to pick an item beside you. Now try the same attempt with a different item and go further away from it and see what happens. Press S for status and try to pick the key and see what happens after you picked the key by pressing S. I am happy with my work...but all of this is alpha..more will be changed.
Using the Wind open it opens great opportunity but I have questions about it and I plan to ask them in a new topic. As this topic about compiler and I want to keep it that way...but THANKS for the compliment....:)
By the way, i am treating programming the same way as playing an RPG game and leveling. My level 0 experience now is in AMOS as AMOS is excellent and I emphasize with the term excellent for beginner programmer to make games. So my 1st game is going to be done in AMOS both engine and editor side of this game. As a level 0 experience programmer my intention when the game is finished and replaced with better graphics I will release the engine, editor and their source code on aminet :) You guys can play the game i made with it's story and then make your own games using my editor (as my editor will also include having custom event and so on).
My level 1 experience when I am done with this will be in AmiBlitz as it is a more challenging programming language and i need to use a more challenging language to hun my skills better and learn better and improve better in programming and fix any bad habit and improve in my habit. As AmiBlitz is not true OO yet but helps more than the skill I have in current AMOS.
When I finish my second game completely, I will have that game closed source code and sell the executable in amigakit.
Finally, when I reach level 2 I will make my last Amiga game in my life and that will be done in C++. That too will be closed source and the executable will also be sold.
Then that is that :)
-
It's good to see you have set yourself a good plan, but I hope you don't stop programming... you've set yourself some targets that will take alot of work.
I have been programming for years and love learning new algorithms and debugging both mine and other peoples code ;)
That leads nicely onto the fact that I have found the cause of the problem! :)
Dim MAPS(512,512) : Rem cause of "illegal function call" error.
That requires 512*512*4 bytes = 1048576 bytes (or ~1MB)
(each variable value in AMOS is always stored as a longword - 4 bytes - though I think AMCAF has a special version of Dim that uses 2 bytes per value?)
bruceuncle, I suspect it's some quirk of either the compiler code or (hopefully) something in the compiler config file? It seems weird to me that it works in the Editor and yet fails when compiled?
(FYI: my A600 setup in WinUAE has 8MB of chipRAM available)
-
It's good to see you have set yourself a good plan, but I hope you don't stop programming... you've set yourself some targets that will take alot of work.
I have been programming for years and love learning new algorithms and debugging both mine and other peoples code ;)
That leads nicely onto the fact that I have found the cause of the problem! :)
Dim MAPS(512,512) : Rem cause of "illegal function call" error.
That requires 512*512*4 bytes = 1048576 bytes (or ~1MB)
(each variable value in AMOS is always stored as a longword - 4 bytes - though I think AMCAF has a special version of Dim that uses 2 bytes per value?)
bruceuncle, I suspect it's some quirk of either the compiler code or (hopefully) something in the compiler config file? It seems weird to me that it works in the Editor and yet fails when compiled?
(FYI: my A600 setup in WinUAE has 8MB of chipRAM available)
Is there away I can put all the array on fast RAM directly and not on chip RAM? I will leave everything in chip RAM except for the array.
This way I can have:
Layer0(1000,1000) = floor, grass,which door locked and what key needed to open it, traps, etc
Layer1(1000,1000) = objects: wall, items, etc
Layer2(1000,1000) = events, quests, etc
I know that such array in itself will take 12 MB in memory right there. But I cannot use 12 MB on CHIP RAM and I cannot leave 1 byte chip ram and the rest on fast. I want that when the program runs...it instantly takes 12 MB from Fast RAM based on the three layer arrays. This way, the compiler does not care if I go this big in array and lots of people who use Amiga have at least 32 MB Fast RAM and 12 Mb Fast RAM is not too much.
So how do I put the array in fast ram directly?
The reason why I want the map size to be this big because I want to put everything in one array directly. I don't want to have to keep access files and loading new areas of the map and somehow try to save changes on old area and stuff like that on file when I come back to using that old area again. I want to do all the manipulation in memory directly.
-
I still think you need to re-think having such massive arrays. Especially if you have large sections of it of "zero" values
You could avoid using arrays all together and use PEEK/POKE Of memory addresses (to a bank stored in fast ram)
-
You could avoid using arrays all together and use PEEK/POKE Of memory addresses (to a bank stored in fast ram)
I agree.
Having such huge arrays will waste alot of memory. Horace's suggestion above will reduce the memory usage a little.
-
So, if you do as Hungry Horace suggests you'll save memory also because your "array" elements can be less than 4 bytes. You might have something that looks like:
Rem Calculate the array size
MAP_SIZE=MAP_WIDTH*MAP_HEIGHT
' Allocate Layer0 array
Reserve As Work 10,MAP_SIZE
LAYER0_BASE = Start(10)
' Allocate Layer1 array
Reserve As Work 11,MAP_SIZE
LAYER1_BASE = Start(11)
' Allocate Layer2 array
Reserve As Work 12,MAP_SIZE
LAYER2_BASE = Start(12)
These "arrays" are byte sized, so each element can store values between 0 and 255, so you can encode up to 256 different elements traps, keys, objects, quests, etc.) in each array. If you need more values, you can make each two bytes in size, but here I show the one byte version.
You can write procedures or subroutines to get and set data in the memory bank much like you use an array:
Procedure GET_LAYER0[X,Y]
Shared LAYER0_BASE,MAP_WIDTH,MAP_HEIGHT
' Check that we are within the array bounds
If X<0 Or X>MAP_WIDTH Or Y<0 Or Y>MAP_HEIGHT
RESULT=-1
Pop Proc
EndIf
' Compute the memory address of the X,Y location
ADDRESS=LAYER0_BASE+Y*MAP_WIDTH+X
RESULT=Peek(ADDRESS)
End Proc[RESULT]
Procedure SET_LAYER0[X,Y,VALUE]
Shared LAYER0_BASE,MAP_WIDTH,MAP_HEIGHT
' Check that we are within the array bounds
If X<0 Or X>MAP_WIDTH Or Y<0 Or Y>MAP_HEIGHT
RESULT=-1
Pop Proc
Else
RESULT=0
EndIf
' Compute the memory address of the X,Y location
ADDRESS=LAYER0_BASE+Y*MAP_WIDTH+X
Poke(ADDRESS,VALUE)
End Proc[RESULT]
You can use these like:
' Set 10,20 to a value of 34
SET_LAYER0[10,20,34]
' Get the value of 10,20
GET_LAYER0[10,20]
' After the procedure, the value is stored in a system variable called Param.
VALUE=Param
If you do things this way, you'll save a huge amount of memory (3 MB vs 12 MB for your 3 layers) and you can also use the Save and Load commands to save your layer data to disk and reload it next time. No is need for a secondary file for this purpose.
-
Thank you so much! I love this suggestions a lot! I am going to try it right away. What if say I wanted more than 255 items?
-
Sure, if you need more than 255 items you can use 2 bytes per element which limits you to 65535 items.
The basic setup is the same, but you'll need to allocate double the space:
' Allocate Layer0 array
Reserve As Work 10,MAP_SIZE*2
LAYER0_BASE = Start(10)
Then, when you set and read elements in your procedure or subroutine you'll want to use Deek and Doke instead of Peek and Poke and multiply the address calculation by 2 before adding to the base address:
Procedure GET_LAYER0[X,Y]
Shared LAYER0_BASE,MAP_WIDTH,MAP_HEIGHT
' Check that we are within the array bounds
If X<0 Or X>=MAP_WIDTH Or Y<0 Or Y>=MAP_HEIGHT
RESULT=-1
Pop Proc
EndIf
' Compute the memory address of the X,Y location
ADDRESS=LAYER0_BASE+(Y*MAP_WIDTH+X)*2
RESULT=Deek(ADDRESS)
End Proc[RESULT]
Procedure SET_LAYER0[X,Y,VALUE]
Shared LAYER0_BASE,MAP_WIDTH,MAP_HEIGHT
' Check that we are within the array bounds
If X<0 Or X>=MAP_WIDTH Or Y<0 Or Y>=MAP_HEIGHT
RESULT=-1
Pop Proc
Else
RESULT=0
EndIf
' Compute the memory address of the X,Y location
ADDRESS=LAYER0_BASE+(Y*MAP_WIDTH+X)*2
Doke(ADDRESS,VALUE)
End Proc[RESULT]
So if you did this for all three layers they would take up 6 MB. Still a substantial memory savings. Also, you can mix and match sizes, for instance, if layer0 only needs 255 values and layer1 needs 65535 values, you can make layer0 one byte and layer1 two bytes.
There is a further enhancement that is possible that allows you to still use normal arrays, but store more than one value in each element location using bitmasks. It's a bit more complicated, but it may be of interest. Let me know if you'd like me to explain it.
And also note that the bounds checking test had an error in it in my first post. It has been corrected in this one. If you can ensure that you're not going to go out of bounds you could remove these tests for a bit of extra speed in a release version of your code.
-
Thank you so much for your help :) Today I am going to make a copy of my original code and revise the new code with these changes. If everything works exactly the way I wanted it to work and it actually works :) I will post the new .exe here for people to play with it. I am hoping I will see the Fast RAM mostly affected and the chip RAM remains high in number when I quit the program :)
If storing map size and items in fast RAM it liberate me to make a decent size RPG game :D