Re: A JMonkeyEngine3 wrapper?

2013-05-13 Thread Robert Louis McIntyre
Everything's in a mercurial repository here: http://hg.bortreb.com/cortex/ sincerely, --Robert McIntyre AtKaaZ writes: > Robert, do you have all that in a project somewhere on github? I really > enjoy all the explanations -- -- You received this message because you are subscribed to the Go

Re: A JMonkeyEngine3 wrapper?

2013-05-10 Thread AtKaaZ
Robert, do you have all that in a project somewhere on github? I really enjoy all the explanations On Fri, May 3, 2013 at 7:19 PM, Robert Louis McIntyre wrote: > I've written some JME3 wrapper code for my thesis project -- it's not > ready for prime time, but it's got some nice ideas. > > The d

Re: A JMonkeyEngine3 wrapper?

2013-05-04 Thread Alex Fowler
Thanks everyone for their input! I have studied all the proposed codes! Based on them I have created a proof-of-concept solution for my case. Although reading the API of Jonathan's library inspired me, I avoided looking into the code yet so as to have some personal fun (remember I am a Clojure

Re: A JMonkeyEngine3 wrapper?

2013-05-04 Thread Alex Fowler
Thanks everyone for their input! I have studied all the proposed codes! Based on them I have created a proof-of-concept solution for my case. Although reading the API of Jonathan's library inspired me, I avoided looking into the code yet so as to have some personal fun (remember I am a Clojure

Re: A JMonkeyEngine3 wrapper?

2013-05-04 Thread Alex Fowler
Thanks everyone for their input! I have studied all the proposed codes! Based on them I have created a proof-of-concept solution for my case. Although reading the API of Jonathan's library inspired me, I avoided looking into the code yet so as to have some personal fun (remember I am a Clojure

Re: A JMonkeyEngine3 wrapper?

2013-05-04 Thread Alex Fowler
Thanks everyone for their input! I have studied all the proposed codes! Based on them I have created a proof-of-concept solution for my case. Although reading the API of Jonathan's library inspired me, I avoided looking into the code yet so as to have some personal fun (remember I am a Clojure

Re: A JMonkeyEngine3 wrapper?

2013-05-03 Thread Robert Louis McIntyre
I've written some JME3 wrapper code for my thesis project -- it's not ready for prime time, but it's got some nice ideas. The design goal is to try and make my thesis code concise instead of being a general purpose library, but one idea I like it to build a "world" out of clojure functions that do

Re: A JMonkeyEngine3 wrapper?

2013-05-02 Thread James Reeves
On 2 May 2013 12:09, Alex Fowler wrote: > Hmm, interesting, but games usually involve much state and changes to keep > up their worlds alive.. how do you abstract over this? I work out what changes are required to the scene by comparing the current data structure with the previous one, then cha

Re: A JMonkeyEngine3 wrapper?

2013-05-02 Thread Alex Fowler
Hmm, interesting, but games usually involve much state and changes to keep up their worlds alive.. how do you abstract over this? For example, if you need to move something, then surely you will call for a change.. right inside the user code that happens all the time.. isn't it so? Just interes

Re: A JMonkeyEngine3 wrapper?

2013-05-01 Thread James Reeves
On 1 May 2013 21:08, Alex Fowler wrote: > So, inspired by the latest talks with locals, I propose starting a > collective initiative on creating a full-scale wrapper for JME3. > > Actually, I am starting to write my Clojure project with JME3 and I feel > like in a desperate need for a clojuric wr

Re: A JMonkeyEngine3 wrapper?

2013-05-01 Thread Alex Fowler
Oh that's interesting! Looking at your code and API, I see many nice design solutions, although the style is somewhat different from waht I do.. but me are newb.. and I now started from doing wrappers for meshes, vertex buffers, geometries and materials and stuff.. since these are the 1st thing

Re: A JMonkeyEngine3 wrapper?

2013-05-01 Thread Jonathan Fischer Friberg
UI example: https://github.com/odyssomay/orbit/blob/master/test/orbit/test/ui.clj#L45 Sorry for the "spam". :) Jonathan On Wed, May 1, 2013 at 11:28 PM, Jonathan Fischer Friberg < odysso...@gmail.com> wrote: > Some info about the current status: > > * Input handling - missing joystick (not tha

Re: A JMonkeyEngine3 wrapper?

2013-05-01 Thread Jonathan Fischer Friberg
Some info about the current status: * Input handling - missing joystick (not that important I guess). * Networking - "completely" done (might be improved, but works for most purposes). * Physics - not started. * Materials - usable, but needs work. * Geometry - same as material. * Application + set

Re: A JMonkeyEngine3 wrapper?

2013-05-01 Thread Jonathan Fischer Friberg
My effort can be found here: https://github.com/odyssomay/orbit It's kind of "all over the place" in that I have started on a lot of things, but not really finished any parts. In any case, should be some useful stuff in there. I haven't really been active on the project lately - there's a bunch o

A JMonkeyEngine3 wrapper?

2013-05-01 Thread Alex Fowler
So, inspired by the latest talks with locals, I propose starting a collective initiative on creating a full-scale wrapper for JME3. Actually, I am starting to write my Clojure project with JME3 and I feel like in a desperate need for a clojuric wrapper. So I started implementing wrappers for Ma