Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
It should then be a matter of getting a simple idea, divide it into tiny separate pieces and try to handle them one by one. Interacting with the Gadget itself (making a sound, displaying a frame on the LED display, etc...) should be easy by simply checking the documentation (there are probably some tutorials in the game, i'd count on that...).
You could start by trying to make a simple game, like Snake. I've done it in countless technologies already, i can tell you that i usually start with a pixel on the screen - then make the pixel move in each direction through input, then make it continuously move in that direction, then randomly add food, increase points on touching food and make it disappear, now the fun part - the tail which keeps getting larger - no point in creating lose conditions yet - just let it pass through the tail no issue - the real challenge is making the tail follow the head...
Then you can add a bunch of stuff. Thats how i would break down the Snake idea, though other programmers would think different ways almost surely, some make it more complicated, others break it down too much maybe, just go with whatever works for you and more importantly have fun while doing it. Programming is just like doing puzzles, a lot of people have tons of fun doing it, and a lot of frustration comes around sometimes, but when you finally solve it you're thinking about the next one.
Now, drawing the pixel to the screen depends on Retro Gadget's documentation, possibly you'd have to call a function that throws a specific color at a specific location on the LED display, and when switching position, clear the whole display and draw the relevant pixels again... Who knows, maybe their discord/website already has the docs but I havent looked yet.
EDIT: As to answer your actual question, I seriously doubt that, but right now only the devs themselves could answer that until the game comes out ..
Here we have a few old tutorials (we are making new ones) that maybe can help you understand if this is a game for you.
https://www.youtube.com/watch?v=2l8h04BnLKU&list=PLTNn5UwoPl7NjNhF84IC32SF7futm1Bph
Hope this helps!