Would like to join Ludum Dare 48

Hi Annie,

according to the Website it is a week later, April 24-April 27. https://ldjam.com If this is true I would like to join :grinning:

Cheers

Hans

1 Like

Great, will consider you on the team! Aaargh, this complicates my lifeā€¦

Hi,

compo is over, playing is on going, and Iā€™m happy that I was part of the team. I learned a lot of things, especially with respect of a multinational and muli-timezone team. Our result is really cool https://ldjam.com/events/ludum-dare/48/perchance-to-dream :grinning:
It has js css animation in front, SWI Prolog to manage and read game data and an Python based tool to create XML based game data from Markdown written game texts.

Btw: there was told ā€œProlog is no game engineā€, Well ā€¦ :grin: thatā€™s an interesting point. Yes SWI Prolog is not optimized for games - because you can do a lot do with it. On the other side, I like the idea to have an rule based (Prolog based) game creation thing. During the jam I thought it would be nice to have a Prolog system which helps to create css / svg / html code, for example for simpler pure html5 based games. Maybe a project for later

Cheers

Hans

2 Likes

Yes- I think we had a team member who expected Prolog to be a game engine. But itā€™s kind of the point of organizing these things - run Prolog in a space where itā€™s not ā€˜comfortableā€™.

And if youā€™d like to try our game, the game is at http://robo.digitexel.nl:8888/

The Ludum Dare page is at https://ldjam.com/events/ludum-dare/48/perchance-to-dream

Prolog actually did a lot for us.
The game jam starts with announcing a ā€˜themeā€™. This time the theme was ā€œDeeper and Deeperā€.
For me, in Europe, that was at 3am. So I was up only an hour, while the many talented writers we had on the team this time started planning an interactive fiction type game.
By the time I woke up, we had a problem. Theyā€™d written over a thousand lines of short cards type prose, with different style formatting. AAAAAA!
I thought I could massage all this into XML, and I could quickly write an xml reader.
Writing the xml reader was a single line, but finding things in it went slower than I wanted, simply because it took me a while to figure out the SWI-Prolog xpath notation. Once I figured it out, it went quickly. So I have a to-do item to push improvements to the xpath documentation.

That really didnā€™t cut it, XML is still unlovely stuff to work with - but one of our teammates had experience with a python markdown reader library and wrote a markdown to xml converter.

With all the ā€˜cardsā€™ (individual text descriptions of current state) in place, we discovered there were a lot of loose ends. So I quickly wrote some prolog graph traversal tools to find things like broken links.
Great task for Prolog.

We had used pengines because we thought weā€™d be using CHR heavily to keep state. As it turns out, we didnā€™t use state at all in that sense - the game just takes you from one card to another.

Anyone interested, the code is at

3 Likes