| ▲ | Langjam Gamejam: Build a programming language then make a game with it(langjamgamejam.com) |
| 29 points by birdculture 5 hours ago | 19 comments |
| |
|
| ▲ | BSTRhino a minute ago | parent | next [-] |
| lol, I spent 3 years coding a game programming language... |
|
| ▲ | munificent 2 hours ago | parent | prev | next [-] |
| Oh my God, someone has discovered my kryptonite. |
|
| ▲ | kderbyma 2 hours ago | parent | prev | next [-] |
| I have been doing something minor - not full language - but I am working on a couple DSLs for my game engine. The games themselves are interpreted by my engine console - then transpiled to webgl and JavaScript. The DSL is for cutscenes and scripting dialogues and movements and transitions. The idea was to have a screenplay like language that would run in my game engine so I can write the scenes like a script instead of like code. — Then I am using a LUA like subset for the core game logic. I don’t think I would want to have the entire thing written in a custom language though, as that seems unnecessary |
| |
| ▲ | toisanji an hour ago | parent [-] | | Ok would like to learn more about what you have been building, can we talk? I have thought of similar ideas. |
|
|
| ▲ | amarant 3 hours ago | parent | prev | next [-] |
| Holy cow the diversity of skill sets required to do this is insane. I'll be very impressed at any Devs who takes this on solo. |
| |
| ▲ | sunrunner an hour ago | parent | next [-] | | The crossover of language design/implementation and game development made me assume this was either a Jonathon Blow (Jai, Braid, The Witness) or Bob Nystrom project (Game Programming Patterns, Crafting Interpreters, 'Is There More to Game Architecture than ECS?' [1]). Either way, given the time constraints and requirements I'm expecting a lot of text adventures and rogue-likes. [1] https://www.youtube.com/watch?v=JxI3Eu5DPwE | |
| ▲ | cardanome 2 hours ago | parent | prev [-] | | I think you can make it as challenging or not challenging as you want. Just implement a simple Forth or Lisp in Lua and make a cute little game with Love2d or even just a simple text game. Maybe I expect too much from people but like at least being able to write a simple tree-walking interpreter is basic computer science education and who hasn't tried to make a game at least once? The problem is more that some people just like sharpening the saw and some people like cutting down trees. Both are valid. Some people get really into programming languages and tooling but never ship any product or vice versa. But people need to be skilled enough to do both. | | |
| ▲ | amarant 34 minutes ago | parent [-] | | I think I might be the one to expect too much on second thought. Making a language and a game is one thing, making a good language and a good game is something else entirely. Very few people can do either of those on their own, let alone both. |
|
|
|
| ▲ | macintux 2 hours ago | parent | prev | next [-] |
| Seems ideal for those grumbling about Advent of Code’s shortened schedule this year. |
|
| ▲ | azhenley an hour ago | parent | prev | next [-] |
| I’m going to blog about whatever I end up building. I hope some of you will join me :) |
|
| ▲ | Razengan 2 hours ago | parent | prev [-] |
| I've been wondering about this for some time, that how there really isn't a language that's made from the ground up just for coding gameplay logic. Like we have SQL for databases, Julia etc for maths etc, but gamedevs still have to plod along in general-purpose languages with archaic conventions established 50 years ago by people who had nothing to do with games. I'd love something with the syntax of GDScript and the features of Swift, with special constructs just for gameplay logic, which is often a hybrid between inheritance and composition, static and dynamic, declarative and imperative. I've been toying with what would be the ideal syntax (for me), but I don't have the brains to actually make a language :') |
| |
| ▲ | zzo38computer an hour ago | parent | next [-] | | There are many that are specialized for different uses in games, such as: - ZZT-OOP - MegaZeux Robotic - ZIL - MESH:Hero - Free Hero Mesh - Super ZZ Zero - OHRRPGCE HamsterSpeak (There are probably a lot more that I had missed) All of these are specific to the specific kind of games being made with them, though; different kind of games will require a different kind of logic. MESH:Hero is specific to a specific kind of puzzle games, and Free Hero Mesh is a FOSS clone of MESH:Hero with a different syntax and more features. | |
| ▲ | meheleventyone an hour ago | parent | prev | next [-] | | PuzzleScript is the closest to this I can think of. Hyper specialised though. https://www.puzzlescript.net/ | |
| ▲ | Balooga 2 hours ago | parent | prev | next [-] | | There is OpenGOAL[1]. A re-implementation of the language that Naughty Dog used to created Jak and Daxter. [1] https://opengoal.dev/ | |
| ▲ | Scramblejams an hour ago | parent | prev | next [-] | | Check out Jai, apparently if you ask nicely its author will let you use it. Unofficial docs here: https://pixeldroid.com/jailang/ | |
| ▲ | macintux 2 hours ago | parent | prev | next [-] | | Well, if you’re interested in text-based games, there have been custom languages for a long time. https://www.linusakesson.net/dialog/craverly/craverly_side_b... Also LPC for muds, although that definitely wasn’t built from the ground up. | |
| ▲ | reactordev 2 hours ago | parent | prev [-] | | SQL is deterministic. Julia is deterministic. Gameplay is not deterministic. Constraints are arbitrary and there are no rules. | | |
| ▲ | formula1 2 hours ago | parent [-] | | I think magic the gathering set a pretty good standard. | | |
| ▲ | reactordev 2 hours ago | parent [-] | | For Magic the gathering, sure. Not for Eve-Online. Not for Counter-Strike. Not for World of Warcraft. Not for Minecraft. Games are too diverse to limit yourself to a DDL. |
|
|
|