Remix.run Logo
AISnakeOil 4 days ago

Is there any way to edit programs in my own editor?

I can't work with these blocky fonts.

archargelod 4 days ago | parent | next [-]

Yes, you can write code in a separate file and then import it to cartridge with tic-80 console commands[1]

You don't have to do this manually every time, just make a shell script with multiple commands; e.g. this will import code, save and run the cartridge:

    ./tic80 --skip --fs="$PWD" --cmd="load cart.tic & import code main.lua & save & run
The other way is indeed to buy or build yourself a PRO version, it can work with cartridges in plaintext format.

[1] https://github.com/nesbox/TIC-80/wiki/import

jsheard 4 days ago | parent | prev [-]

There is, but it's one of the few features reserved for the pro version ($10)

https://github.com/nesbox/TIC-80/wiki/external-editor

echoangle 4 days ago | parent [-]

You can also build the Pro version yourself for free according to the docs: https://github.com/nesbox/TIC-80/wiki/PRO-Version