I have being using Trial[1] for the past few weeks to test out game development in Common Lisp, and have been having a great time. Being able to alter (almost) all aspects of your game while it's running is a blessing. I hope this port succeeds. [1]: https://github.com/Shirakumo/trial
Lisp languages seem well-suited for building games. The ability to evaluate code interactively without recompilation is a huge deal for feature building, incremental development, and bug-fixing. Retaining application state between code changes seems like it would be incredibly useful. Common Lisp also appears to be a much faster language than I would have blindly assumed. The main downside for me (in general, not jus…
Porting SBCL to the Nintendo Switch
21–30 of 84 posts
Re: Porting SBCL to the Nintendo Switch
#22Porting Yuzu to Nintendo Switch
Re: Porting SBCL to the Nintendo Switch
#23I have being using Trial[1] for the past few weeks to test out game development in Common Lisp, and have been having a great time. Being able to alter (almost) all aspects of your game while it's running is a blessing. I hope this port succeeds. [1]: https://github.com/Shirakumo/trial
Lisp languages seem well-suited for building games. The ability to evaluate code interactively without recompilation is a huge deal for feature building, incremental development, and bug-fixing. Retaining application state between code changes seems like it would be incredibly useful. Common Lisp also appears to be a much faster language than I would have blindly assumed. The main downside for me (in general, not jus…
For the old historic Naughty Dog use case, it was a development system written in Common Lisp on an SGI and a C++ runtime with low-level Scheme code on the Playstation.
> Common Lisp also appears to be a much faster language than I would have blindly assumed.
There are two modes:
1) fast optimized code which allows for some low-level stuff to stay with Common Lisp
2) unoptimized, but natively compiled code, which enables safe (-> the runtime does not crash) interactive and incremental development -> this mode is where much of the software can run nowadays and which is still "fast enough" for many use cases
Re: Porting SBCL to the Nintendo Switch
#24Somewhat offtopic, just flashed through my mind: you know what would be amazing and absolutely useless at the same time? Porting Yuzu to Nintendo Switch
Re: Porting SBCL to the Nintendo Switch
#25Somewhat offtopic, just flashed through my mind: you know what would be amazing and absolutely useless at the same time? Porting Yuzu to Nintendo Switch
Re: Porting SBCL to the Nintendo Switch
#26Somewhat offtopic, just flashed through my mind: you know what would be amazing and absolutely useless at the same time? Porting Yuzu to Nintendo Switch
This has been done, and it’s been possible to run Switch on Switch for several months [0] (about 39 minutes into the video). [0] https://youtu.be/H1gveQUBIKk
*: Compared to my usual ideas
Re: Porting SBCL to the Nintendo Switch
#27Earlier quoted context omitted.
You cannot publish games with homebrew, it has to use the official SDK. Besides that, almost nobody has a jailbroken Switch, so it would make it extremely hard to play any games on anything but an emulator.
> You cannot publish games with homebrew, it has to use the official SDK This doesn't surprise me much, but does Nintendo state this explicitly anywhere public? If Nintendo chose to sign an application developed using a 3rd party toolchain, there's no technical reason why it couldn't run on retail consoles.
Re: Porting SBCL to the Nintendo Switch
#28I probably missed it, but since the switch doesn’t have a keyboard how do you handle text input ?
Re: Porting SBCL to the Nintendo Switch
#29Earlier quoted context omitted.
> You cannot publish games with homebrew, it has to use the official SDK This doesn't surprise me much, but does Nintendo state this explicitly anywhere public? If Nintendo chose to sign an application developed using a 3rd party toolchain, there's no technical reason why it couldn't run on retail consoles.
Yeah, maybe. But also the official SDKs are pretty good and you get support from Nintendo. It seems like a pretty big risk to use an unsupported SDK... for what benefit?