AMOS Sprite Bank
From Just Solve the File Format Problem
(Difference between revisions)
(→Software) |
Dexvertbot (Talk | contribs) m (Change telparia.com samples link to template) |
||
(8 intermediate revisions by 4 users not shown) | |||
Line 4: | Line 4: | ||
|extensions={{ext|abk}} | |extensions={{ext|abk}} | ||
}} | }} | ||
− | '''AMOS Sprite Bank''' is a raster image file format associated with | + | '''AMOS Sprite Bank''' is a raster image file format associated with AMOS. See [[AMOS BASIC tokenized file]] for more information about AMOS. The format may also be known as '''Object Bank''' or '''Bob Bank'''. |
− | [[AMOS Icon Bank]] is a very similar format. | + | [[AMOS Icon Bank]] is a very similar format. See also [[AMOS Picture Bank]]. |
Note that other types of AMOS files also use '''.abk''' filename extension. | Note that other types of AMOS files also use '''.abk''' filename extension. | ||
Line 38: | Line 38: | ||
== Specifications == | == Specifications == | ||
+ | * [https://www.exotica.org.uk/wiki/AMOS_file_formats#AMOS_Sprite_and_Icon_bank_formats AMOS Sprite and Icon bank formats] | ||
* [http://www.ultimateamiga.co.uk/HostedProjects/AMOSFactory/AMOSProManual/ AMOS Pro User Guide] → [http://www.ultimateamiga.co.uk/HostedProjects/AMOSFactory/AMOSProManual/14/1431.html Memory Bank Structures] | * [http://www.ultimateamiga.co.uk/HostedProjects/AMOSFactory/AMOSProManual/ AMOS Pro User Guide] → [http://www.ultimateamiga.co.uk/HostedProjects/AMOSFactory/AMOSProManual/14/1431.html Memory Bank Structures] | ||
== Software == | == Software == | ||
* [https://github.com/dschwen/amosbank amosbank] | * [https://github.com/dschwen/amosbank amosbank] | ||
+ | * [https://github.com/kyz/amostools amostools] | ||
+ | * [[Konvertor]] | ||
* [http://sourceforge.net/projects/javaamosabk/ Java AMOS Sprite Bank Viewer] | * [http://sourceforge.net/projects/javaamosabk/ Java AMOS Sprite Bank Viewer] | ||
+ | * {{Deark}} | ||
+ | * [[RECOIL]] | ||
== Sample files == | == Sample files == | ||
Line 48: | Line 53: | ||
* http://sourceforge.net/projects/javaamosabk/files/abk/ (e.g. Mouse.Abk) | * http://sourceforge.net/projects/javaamosabk/files/abk/ (e.g. Mouse.Abk) | ||
* [http://cd.textfiles.com/zoom2/graphics/misc/procad/brushes/teletube_h.abk teletube_h.abk] | * [http://cd.textfiles.com/zoom2/graphics/misc/procad/brushes/teletube_h.abk teletube_h.abk] | ||
+ | * {{DexvertSamples|archive/amosSpriteBank}} | ||
== Links == | == Links == | ||
* [[Wikipedia:AMOS (programming language)|Wikipedia: AMOS]] | * [[Wikipedia:AMOS (programming language)|Wikipedia: AMOS]] | ||
− | |||
[[Category:Amiga]] | [[Category:Amiga]] |
Latest revision as of 02:53, 28 December 2023
AMOS Sprite Bank is a raster image file format associated with AMOS. See AMOS BASIC tokenized file for more information about AMOS. The format may also be known as Object Bank or Bob Bank.
AMOS Icon Bank is a very similar format. See also AMOS Picture Bank.
Note that other types of AMOS files also use .abk filename extension.
Contents |
[edit] Identification
Files begin with ASCII characters "AmSp
".
[edit] AMOS Sprite/Icon Bank format
A sprite bank and an icon bank share very similar attributes. They define graphic data which can be drawn onscreen. They have this format:
Field | Length |
---|---|
Bank identifier: AmSp for sprites (bank 1) or AmIc for icons (bank 2) | 4 bytes |
Count of sprites/icons to follow | 2 bytes |
Sprites/Icons. Each sprite or icon has this format:
| |
Color palette: 32 16-bit colors in 0x0RGB form, the Amiga COLORx hardware register format | 64 bytes |
[edit] Specifications
[edit] Software
[edit] Sample files
- Most of the files at http://cd.textfiles.com/amospd/Sprites/
- http://sourceforge.net/projects/javaamosabk/files/abk/ (e.g. Mouse.Abk)
- teletube_h.abk
- dexvert samples — archive/amosSpriteBank