Skip to content

endavid/AMOSaver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 

Repository files navigation

AMOSaver

A tool to decode AMOS program files.

Features

Parse source code

  • It parses an AMOS file and outputs the source code in plain text.
  • Currently, not every token is decoded.
  • Basically, I reverse-engineered a couple of my old programs, so I may have missed some tokens.
  • There are too many extensions to add support for every of them, so again, I just decoded some of the tokens I used in my old programs.
  • List of AMOS extensions: http://www.amigacoding.com/index.php/AMOS:Extensions
  • From that list, I just decode a couple of commands from (1)Music, (2)Compactor, (19)MusiCRAFT

Decode sprites and icons

  • The program also decodes the Sprite and Icon memory banks and converts them to PNG images.

Decode other memory banks

  • So far, the program just gives brief information about the other memory banks, but it does not decode them.

Build

Use ant to build the project.

  • Go to the project folder.
  • Type ant, and it will create a .jar file inside dist folder.
  • Alternatively, if you have a Mac, open the XCode project file and build using XCode.

Usage

  • Run it from the command line using Java VM.
java -jar AMOSFileDecoder [options] SOURCEFILE.AMOS
  • Options:

  • -v | --verbose: outputs more information

  • --sourceonly: decode only the source code

  • --imagefolder PATH: output images to PATH

  • --datafolder PATH: output memory banks to PATH

  • Examples:

  • This example will decode the input file and output as a plain AMOS file (I call this file "pamos").

java -jar AMOSFileDecoder --sourceonly MYPROGRAM.AMOS >myprogram.pamos
  • This example will create image files inside the specified folder, output the source code to the pamos file, and output information to the console such as the size of each sprite or the memory banks that the AMOS file contains.
java -jar AMOSFileDecoder -v --imagefolder ~/Pictures/ MYPROGRAM.AMOS >myprogram.pamos
**[OUTPUT Example]**
_Decoding 6 banks..._
 Bank 9: Pac.Pic. 27826 bytes
 Bank 0: Samples  (chip) 30088 bytes
 Bank 7: Pac.Pic. 5246 bytes
 Bank 3: Music    (chip) 45124 bytes
 Bank 5: Samples  (chip) 60900 bytes
_... reading 8 images_
img(0)=16x10x5, (0, 0)
img(1)=16x10x5, (0, 0)
...

Games in AMOS

About the name: AMOSaver

  • AMOSaver is a lame name that comes from 3 lame ideas:
  • AMOS Saver: it saves AMOS files, and it rescues my old programs into something readable
  • AMOS, a version: a version of AMOS
  • vAMOS a ver: in Spanish, "let's see"... I was not sure what this project would turn into, so for now, let's just see...

License

The source code of this project is distributed under the MIT License. Please feel free to use it.

To do

  • These are some of the things I plan to add:
  • Parse more source tokens
  • Decode Pac.Pic. banks
  • Decode Samples
  • Decode Music
  • Provide a syntax highlighter in PHP
  • These are things I have NO PLAN of implementing:
  • An interpreter to run the program
  • Extensions of AMOS language

About

Tool to decode AMOS program files (written in Java)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages