SP4CEBAR 2026-05-12 14:23 (Edited)
Upon opening sp4cebar.com/nx-editor/ you are greeted with the program below.
PRINT "HELLO WORLD"
TOUCHSCREEN
DO
SPRITE 0, TOUCH.X-4, TOUCH.Y-4, 193
WAIT VBL
LOOP
The current program is both simple and interactive but it looks a bit boring. So I think it is time for a replacement. That's why I ask you help, if you want to contribute please consider the requirements below and have fun :)
POKE $FF76,%1001 instead of GAMEPAD or TOUCHSCREEN (see this program), although this will look like total magic to newcomers, it does allow you to demonstrate both the touchscreen and joystick capabilities of NX and the online editor which is a plus.I will link the NX topic url of the program.
If there are multiple good submissions I may add them both, I could for example select one randomly each time the editor page is loaded.
moechofe 2026-05-12 17:50 (Edited)
C-script 2026-05-13 21:13
What do you think?
SP4CEBAR 2026-05-14 17:49 (Edited)
Thank you! I like them!
The pong game's code seems be a bit long and hard to understand and tweak for a beginner. I may try to strip it.
moechofe 2026-05-15 08:04
You can simplify it by removing the part that compute the new angle when the player paddle hit the ball. And remove the speed increase too.
moechofe 2026-05-15 08:14 (Edited)
Did you know about https://microsoft.github.io/monaco-editor/ ? It's the javascript editor engine that run under the hood of vscode and it's pretty easy to integrate inside a web page.
SP4CEBAR 2026-05-17 14:34
That's very interesting, I may look into that once, thank you!