TacticalCoder 3 years ago

I made so much of these when I was coding intros/demos on the Amiga then on the PC! The one looking like Lorenz attractors (16) of course. And the Moire pattern (43): I coded that on the Amiga and wondered "wait, does this work if I add perspective?"... And of course interference patterns do work in 3D too, so I hacked a little something and it looked a bit like a DJ was scratching vinyls.

I dig the "TEST" (41) one: that TIC thing looks like a fun little fantasy computer!

The "floating letters" one (15) brings back memories of the tiny cracktros some pirated games or pirate BBS had (many of us were sailing the high seas as kids, aye!)

boomlinde 3 years ago

An interesting thing about "[A lot of] [thing] in [short time]" challenges is that you get a lot of opportunities to learn what processes can be stripped away and different ways to compromise. Great way to break out of a rut or block because you have to learn what's stopping you and what's essential to you.

I quickly skimmed over these results and saw at least one case of "this thing was complicated, so I did this other thing instead" and one "I tried to do that thing, but my failure resulted in this thing". The goal was to make 50 carts so these are both perfectly valid strategies to achieve it.

LeonidBugaev 3 years ago

If you liked this fantasy console approach, you should also check https://www.lexaloffle.com/pico-8.php, it is not OSS, but have really great community and support.

  • deivid 3 years ago

    I saw Pico8 a while ago and really liked it! Now I'm trying to make it "real", by creating a physical console that implements the API: https://github.com/DavidVentura/PicoPico

    It's heavily incomplete, but it runs "Celeste" on an ESP32. Some small games also run in the Raspberry Pico (RP2040), but it does not have enough RAM for medium-large games.

    • aquova 3 years ago

      This is fantastic. I've made a Game Boy emulator in the past, and I'm a big fan of Pico-8, so maybe I'll give this a try myself as a learning project. I wasn't aware this was really feasible.

    • codetiger 3 years ago

      Hi @deivid, I've been following your project for a while, and would like to collaborate. I am working on a similar Game console project and working on adding support for fantasy console support Pico8 or Tic80. https://github.com/codetiger/GameTiger-Console

      • deivid 3 years ago

        Sure! Feel free to message me in github or via email.

        I've abandoned my Pico8 on RP2040 port though, a lot of games simply need more memory than there's available. There's this crazy guy: https://github.com/yocto-8/yocto-8/blob/main/doc/extmem.md that managed to get external RAM over SPI working (RP2040 does not support memory remapping)

        On ESP32 with SPIRAM (/PSRAM) Pico8 is definitely achievable, and _most_ games will run at a playable frame rate, but some won't; as an example "Rockets!", does too many calculations per frame to run smoothly, and the Lua overhead starts showing so I'm exploring ideas like an optimizing compiler that can run off-console, etc.

        I don't thing TIC-80 will be doable, the constraints are significantly more relaxed. A Pico8 framebuffer is 32KB; in TIC-80 it is 64KB (and this doubles with buffering/DMA) but most importantly, code is no longer something simple like Lua

    • djmips 3 years ago

      Cool project!

qiqitori 3 years ago

The source code appears to be inside the .tic files, after a short binary header.

To save you some time, if you can't figure out the controls for some demos, try the scroll wheel. You can also press Esc inside demos and get some kind of menu.

nathell 3 years ago

OMG this is so inspiring. Reminds me of early high school days when I’d fire up Turbo Pascal on my 486DX2/66 and play around with the VGA.

It seems like it’s easy to get the creative juices flowing with the TIC-80. Kudos to the author!

dave84 3 years ago

I adore TIC-80. I discovered it last August at a time when I was burned out and no longer programming for fun and it gives me the same sense of wonder and power as sitting down at QBasic.

aquova 3 years ago

I love fantasy consoles like Pico-8 and Tic-80 (and all the various others). I haven't done too much with TIC-80 as I ironically find the less restrictive restraints compared to Pico-8 harder for me to work with. It's almost easier to get started when you have 8x8 sprites, a 128x128 screen and only 16 colors. Once you lessen those restrictions it can be more daunting.

djmips 3 years ago

Nice one! This shows how cool it is to practice on a constrained very immediate playground.

eternityforest 3 years ago

I love the uses of random noise here to create texture and shading at the same time.

ggm 3 years ago

Rocking! Mod scene here we come. Where's the "download to a floppy" icon

VikingCoder 3 years ago

Very nice. I wish more people just played with code like this.

UnchartedSystem 3 years ago

Some great inspiration to dig back into fantasy consoles

ilaksh 3 years ago
  • ravi-delia 3 years ago

    Dearest hacker news user,

    What

    Regards, Ravi

ddanv 3 years ago

Honest question - wouldn't this be more fun to do in CUDA? And why not?