Re: Spring 2016 Lisp Game Jam

2016-04-22 Thread Jakob Eriksson
On 22/04/16 10:27, Robert Herman wrote: > > I am really looking to use miniPicoLisp as the game framework, only leaning > on SDL2.0 or CSFML as the engine underneath to deal with keyboard i/o, > event handling, sound, graphics and networking. I guess maybe it's the same > thing? I'd say I

Re: Spring 2016 Lisp Game Jam

2016-04-22 Thread Robert Herman
I have used 8th programming language [1], a Forth, where the same code compiles to Linux, Windows, Android, OS X and iOS. SDL2 is on all platforms, and there are games made with it, so maybe the same could be done for PicoLisp. The Red Language libs and all is under 1mb [2], and it too is

Re: Spring 2016 Lisp Game Jam

2016-04-22 Thread Robert Herman
At first, I only wish to create something quick, so I am ready for the game jam. I can add platforms or polish later. I think what you are suggesting is embedding miniPicoLisp as a scripting language, if I understand you and PicoLisp correclty. I am really looking to use miniPicoLisp as the game

Re: Spring 2016 Lisp Game Jam

2016-04-22 Thread Jakob Eriksson
I'd say it's rather simple to embed minipico into any framework which can be used with plain C. So that should open up Android and iOS too. Although never underestimate the practical troubles with compiling on 4 platforms if you are only one developer. :) Been there, done that. :) // Jakob

Re: Spring 2016 Lisp Game Jam

2016-04-21 Thread Robert Herman
All true Alex and Jakob. I am not trying to develop something professional, so that leaves me two choices: 1. Implement a very simple framework, and handcraft all of the requirements it in miniPicoLisp (thx Christophe! I had put it aside for a year and forgot) that wraps SDL2, which is C-based,

Re: Spring 2016 Lisp Game Jam

2016-04-20 Thread Jakob Eriksson
Actually, I find that you can statically link most libraries on Linux and that tends to remove almost all distribution problems. best regards, Jakob On 20/04/16 07:57, Alexander Burger wrote: > Hi Rob, > >> HTML5, JS and family come into the picture when you want to distribute or >> share your

Re: Spring 2016 Lisp Game Jam

2016-04-20 Thread Alexander Burger
Hi Rob, > HTML5, JS and family come into the picture when you want to distribute or > share your game. Distribution is king, and sadly it is asking too much to > have a basic user/player to install PicoLisp so they can play your game, Yes, that's the problem. As long as you go for a native Linux

Re: Spring 2016 Lisp Game Jam

2016-04-19 Thread Christophe Gragnic
If you need more portability and don't need the DB, you could use miniPicoLisp. And what about Ersatz ? chri -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

Re: Spring 2016 Lisp Game Jam

2016-04-19 Thread Robert Herman
Alex, I was brainstorming, and reaching out to any other possible graphics/game devs that might also be interested in using PicoLisp. For me, I know what I want. I want to be able to code my game in PicoLisp, and run it as is on my Linux box. I would only require a minimal game framework, which

Re: Spring 2016 Lisp Game Jam

2016-04-19 Thread Alexander Burger
On Tue, Apr 19, 2016 at 11:29:13AM +0700, Robert Herman wrote: > What does Alex and everyone else think about implementing a game engine > from scratch, wrapping a few libraries, or wrapping an entire JS game > framework? This indeed very hard to say. All options are possible, but the decision

Re: Spring 2016 Lisp Game Jam

2016-04-19 Thread Mike Pechkin
t;> >> >> On Fri, Apr 15, 2016 at 7:33 PM, Alexander Burger <a...@software-lab.de> >> wrote: >> >>> On Fri, Apr 15, 2016 at 08:35:04PM +0700, Robert Herman wrote: >>> > Hey, everyone, I am thinking on participating in the Lisp Game Jam >>

Re: Spring 2016 Lisp Game Jam

2016-04-18 Thread Robert Herman
rote: >> > Hey, everyone, I am thinking on participating in the Lisp Game Jam >> coming >> > up in just 13 days. >> > >> > https://itch.io/jam/spring-2016-lisp-game-jam >> > >> > I invite all picolispers to try, so picolisp gets some lo

Re: Spring 2016 Lisp Game Jam

2016-04-17 Thread Mike Pechkin
On Fri, Apr 15, 2016 at 7:33 PM, Alexander Burger <a...@software-lab.de> wrote: > On Fri, Apr 15, 2016 at 08:35:04PM +0700, Robert Herman wrote: > > Hey, everyone, I am thinking on participating in the Lisp Game Jam coming > > up in just 13 days. > > > > https://

Re: Spring 2016 Lisp Game Jam

2016-04-17 Thread Robert Herman
Yes, simul.l. I need to sleep! I'll also investigate HTML idiosyncrasies more this week. It cannot be ignored in today's world. But, to do a desktop app, has SDL2, or the older SDL lib been wrapped for picoLisp, or is there an advantage of handling this natively with picoLisp? Any information

Re: Spring 2016 Lisp Game Jam

2016-04-17 Thread Alexander Burger
Hi Rob, > When I look at lib sim.l for instance, it has a genetic algorithm snippet, > and some other related, or not-related functions. What is the origin or > specific use case for sim.l? You mean @lib/simul.l, right? It is for general simulation purposes. The genetic algorithm 'gen' was used

Re: Spring 2016 Lisp Game Jam

2016-04-17 Thread Robert Herman
Alex, When I look at lib sim.l for instance, it has a genetic algorithm snippet, and some other related, or not-related functions. What is the origin or specific use case for sim.l? Game frameworks always have keyboard input for movement (WASD keys, arrows, space, etc... think Asteroids). I have

Re: Spring 2016 Lisp Game Jam

2016-04-16 Thread Alexander Burger
On Sun, Apr 17, 2016 at 12:20:42AM +0700, Robert Herman wrote: > That did it, Alex. Now onto looking at the libs to see what has been > implemented in HTML5 Canvas. Good. The function list can be easily extended if necessary. One important issue needs still be decided: Do you need key events in

Re: Spring 2016 Lisp Game Jam

2016-04-16 Thread Robert Herman
That did it, Alex. Now onto looking at the libs to see what has been implemented in HTML5 Canvas. Any ideas on the maximum amount of entities, and what type, can be rendered with picoLisp? Most importantly, how could I package the final picoLisp/HTML5 game for folks that don't have or want to

Re: Spring 2016 Lisp Game Jam

2016-04-16 Thread Alexander Burger
On Sat, Apr 16, 2016 at 08:50:22PM +0700, Robert Herman wrote: > There is hope yet! > It works, and I get up to 420 Hz. Wow! Very fast. > The httpGate command seems to execute, > however, if I put in http://localhost the page cannot connect. I have to The simplest is to start it (as root) as

Re: Spring 2016 Lisp Game Jam

2016-04-16 Thread Robert Herman
There is hope yet! It works, and I get up to 420 Hz. The httpGate command seems to execute, however, if I put in http://localhost the page cannot connect. I have to put in http://localhost:8080 in both Firefox and Midori (Opera). Is there a way to know if httpGate is running? I don't see it with

Re: Spring 2016 Lisp Game Jam

2016-04-16 Thread Alexander Burger
On Sat, Apr 16, 2016 at 07:02:57PM +0700, Robert Herman wrote: > Cool. I am only getting around 2.80 Hz maximum over my 3G/4G WiFi hotspot. > I usually see 150 KBs to 300 KBs (1.2 to 2.5 mb/s). In fact it is not the data rates but the ping times which are relevant here. > I cannot run the

Re: Spring 2016 Lisp Game Jam

2016-04-16 Thread Robert Herman
Cool. I am only getting around 2.80 Hz maximum over my 3G/4G WiFi hotspot. I usually see 150 KBs to 300 KBs (1.2 to 2.5 mb/s). I cannot run the example locally for some strange reason. I had the rectangle example working earlier. Does this example require running httpGate too? I kind of know what

Re: Spring 2016 Lisp Game Jam

2016-04-16 Thread Alexander Burger
Hi Rob, > A simple game engine only requires a main loop to set things up, and a draw > loop to update the screen for animation. Do you think the current picoLisp > libs with Canvas can support a 30 fps update of a 640x480 screen of > bitmapped graphics? This does not depend much on the canvas

Re: Spring 2016 Lisp Game Jam

2016-04-15 Thread Robert Herman
Yes, I definitely have ideas, but the tools and my talent determine how far I prune them back! I am currently in the Ludum Dare #35 challenge (48 hours to create a game from scratch by yourself, all original). This is the LD Compo, vs. the LD Jam where you get 72 hours. The Spring 2016 Lisp Game

Spring 2016 Lisp Game Jam

2016-04-15 Thread Robert Herman
Hey, everyone, I am thinking on participating in the Lisp Game Jam coming up in just 13 days. https://itch.io/jam/spring-2016-lisp-game-jam I invite all picolispers to try, so picolisp gets some love from the gaming community! I am more familiar with SBCL using SDL2 for game making, but I love