7 ms·
Maybe I’m naive but what exactly is this? I couldn’t figure anything out from the website other than it’s a handheld device that shows a text console. What is a
by gergi 4y ago
Maybe I’m naive but what exactly is this? I couldn’t figure anything out from the website other than it’s a handheld device that shows a text console. What is a “fantasy console”? Why would a indie game developer want one of these devices?
- traverseda 4y agoIt's a small linux handheld with a slightly anemic ARM cpu, a full keyboard, and metal case. There are various "fantasy consoles" people make video games on, like the piko-8^1 (which the indie darling Celeste was originally developed for) and the TIC-80^2 (Providing a more PC-like experience). It might be best to think of them as emulators for computers/devices that never existed. Some platonic ideal of game consoles past. They're often programed in LUA and provide limited RAM/Display-resolution/palette-depth, etc, in order to provide a retro feel while not requiring you to program in actual assembly. Personally I'd be more interested in this as a field-device/development-environment/tricorder type unit. It seems like a great unit to hook a chip programmer up to, or one of those open-source FPGA-based oscilloscopes, or other lab instrumentation. 1: https://www.lexaloffle.com/pico-8.php https://www.lexaloffle.com/pico-8.php 2: https://tic80.com/ https://tic80.com/
- Cyberdog 4y agoNot really sure why they're branding it as a console when it's basically a portable Pi, and therefore far more versatile than "game console" implies. I suspect that will cause some confusion among potential customers who initially just see it as a game engine runtime.
- blep_ 4y agoOne of the immutable laws of Raspberry Pi usage is that, for every application, a Pi will be either massively overpowered (this) or completely unnecessary (using them for "learning programming" when you have a perfectly good computer right there).
- anigbrowl 4y agoTruth, though I had to fight off the temptation to get one of those Elecrow Pi Laptops with a breadboard-type electronic kit inside. I don't think the RPi is overpowered for this - maybe for the stated purpose of emulating 8 bit games, but I like the idea of a general purpose computer that is not trying to be a tablet or TV.
- deleted 4y ago[deleted]
- wilsonnb3 4y agoMore info: There are a bunch of Chinese handhelds that people use for emulation, some of which can run PICO 8 games. My Anbernic RG351V does it but I don’t think it came with the stock OS, requires some tinkering. Anyways, there is already a small market for handheld “fantasy console” players that might respond positively to the open nature of the clockwork pi devices.
- roywiggins 4y agoIt's a shame there's no official PICO-8 runtime for any of those little devices, last time I checked compatibility was a bit spotty from the open-sourced reimplementations. Things have probably gotten better on that front since I last looked though. This thing supports a Raspberry Pi compute module so I assume it will run the Pi version of PICO-8.
- ThatPlayer 4y agoJELOS on the Anbernics can run the official Raspberry Pi version of PICO-8 fine. Agree with the reimplementations not being as good.
- roywiggins 4y agoAh, yeah, I was thinking more the ye olde OpenDingux handhelds running on the venerable JZ4770 etc.
- derefr 4y agoA "fantasy [retro game] console" is an abstract machine (like the JVM is an abstract machine, or like the Flash runtime is an abstract machine, or like BASIC is an abstract machine) with two key properties: 1. it's compute-resource-constrained — so you can't just transpile DOOM into the "fantasy console's" native programming language / bytecode ISA and expect it to run well, but instead have to learn to program directly for the console's native programming language or ISA — close to the (abstract) metal — to do anything of note with it; 2. it exposes low-level "primitive" features in its native programming language / bytecode ISA, in the form of system calls or MMIO registers, to accelerate graphics/sound operations without consuming (abstract) CPU cycles; thus allowing games developed for the console to run well at 30/60FPS, despite the resource constraints. Where usually these calls are themselves constrained to only allow for "retro"-style output (e.g. allowing audio only in the form of a set number of square-wave frequency channels.) In other words, a "fantasy [retro game] console" attempts to achieve a similar set of "artistic constraints" for game development that you get from developing for a real retro game console, like the NES or Gameboy. Except that the artistic constraints imposed by fantasy consoles are usually not low-level technical constraints in the system's (theoretical) microarchitecture, but rather arbitrary policy-based constraints imposed by the abstract-machine standard on conforming implementations, and therefore are often less frustrating things to be worked around (think: memory bank switching), and instead are more inspiring constraints to be embraced to fuel the creative process when making a game (think: limited color palette per art asset.) Or you can think of it like this: what if the Super Nintendo never existed, but there still ended up being "SNES emulators" that all agreed on how they should interpret/run "SNES ROMs" — all implementations of a shared abstract-machine standard? Developers would then be producing "SNES games" not to run on a physical SNES, but instead solely so that you could then run them on a compatible emulator. Although, in theory, nothing would stop someone from making a real hardware SNES conforming to the abstract-machine standard — and then SNES ROMs would work on it as well. That's a "fantasy console." For a given fantasy console, there may or may not be any physical-hardware implementations; though usually there aren't. A well-known example of a "fantasy console" with only virtual implementations (i.e. emulators) is the PICO-8 (https://www.lexaloffle.com/pico-8.php https://www.lexaloffle.com/pico-8.php). While there are hardware devices that present themselves "as" a PICO-8 "console", they do this by using some other ISA to run a full OS kernel, which then launches into a userland PICO-8 emulator. There is no hardware device whose CPU+BIOS enables it to natively execute PICO-8 code. (It's the difference between a NES Classic, and an actual NES.) Meanwhile, this thing — the uConsole — isn't a "fantasy console" itself, per se (i.e. they're using the term wrong), but rather a device focused on running multiple fantasy-console emulators, which therefore doesn't even attempt to present itself as being any particular "fantasy console's" hardware. It's basically just one of the many "retro handheld" devices out of Shenzhen recently (which often ship with fantasy-console emulators) — except this one's got a keyboard! :P A fun example of a more true hardware "fantasy console", where the hardware is itself an implementation of a particular fantasy-console abstract machine (and where the abstract-machine standard and the hardware implementation were co-developed to make this possible), is the https://www.commanderx16.com/ https://www.commanderx16.com/ — which is both a fantasy-console in its full capabilities, but is also a backward-compatible superset of the abstract-machine model of a Commodore 64, and so compatible with Commodore 64 software/games (so this abstract-machine can also be thought of as an "enhanced" Commodore 64 — like how the Gameboy Color was an "enhanced" Gameboy — making "enhanced ports" of Commodore 64 games an especially easy/interesting project.)
- deleted 4y ago[deleted]