This is a TIC-80 compatibility layer made for the Homegirl Fantasy Console.
This is still missing several important functions, but some very basic games should run already. Right now, you cannot load .tic files directly. This means you will have to manually extract the code, spritesheet and map from the program you want to try to run. Keep in mind things like sound or music are not possible yet.
- Copy the contents of
cmd
intouser:cmd
- Copy the contents of
fonts
intouser:fonts
- Copy the contents of
tic_defaults
intouser:tic_defaults
tic [folder]
- Launch a game using TIC-80 compatibility modetic [script]
- Launch a .lua using TIC-80 compatibility mode
To play a game made for TIC-80 in Homegirl using this tool, you'll have to follow the following steps:
- Create a folder in Homegirl's
user
drive. This will be where the game data has to be stored in. - Open TIC-80 and load the game you want to extract data from.
- In TIC-80, use
export map
andexport sprites
to export the spritesheet and map. Store the files in the folder you created. - In TIC-80, press
ESC
to open the code viewer. UseCTRL+A
to select everything, then copy the code into the folder you created. - In TIC-80, go to the sprite editor. Click on the button used to change palette settings. Then, press the copy button and paste the palette string into the folder you created.
The file structure should be as follows (Make sure the filenames are identical):
your_game_folder
|- code.lua
|- palette.data
|- sprites.gif
|- world.map
Now, open Homegirl and navigate to the user
drive. Run tic [folder]
to launch the game.