Game programming for kids: looking for open source 2D game developmentkit - Java-Games
This is a discussion on Game programming for kids: looking for open source 2D game developmentkit - Java-Games ; Hello,
I'm planning to give a game programming course for kids of mixed age.
For this, I am looking for an open source 2D game development kit.
I am also willing to participate in the development of the development kit.
...
-
Game programming for kids: looking for open source 2D game developmentkit
Hello,
I'm planning to give a game programming course for kids of mixed age.
For this, I am looking for an open source 2D game development kit.
I am also willing to participate in the development of the development kit.
Features I'd like to see
- Possibility to construct simple games via drag and drop without programming
- Integration into an IDE
- Based on Java or Python
Pluses:
- Good Tutorial
- German documentation
Any Ideas?
Max
-
Re: Game programming for kids: looking for open source 2D game developmentkit
Max Kubierschky a écrit :
> Hello,
>
> I'm planning to give a game programming course for kids of mixed age.
> For this, I am looking for an open source 2D game development kit.
> I am also willing to participate in the development of the development kit.
>
> Features I'd like to see
> - Possibility to construct simple games via drag and drop without
> programming
> - Integration into an IDE
> - Based on Java or Python
> Pluses:
> - Good Tutorial
> - German documentation
With Python:
* pygame + build your drag'n drop features
* if you like 3D, vpython.
http://www.pygame.org/
http://www.vpython.org/
-
Re: Game programming for kids: looking for open source 2D game developmentkit
Max Kubierschky schrieb:
> Hello,
>
> I'm planning to give a game programming course for kids of mixed age.
> For this, I am looking for an open source 2D game development kit.
> I am also willing to participate in the development of the development kit.
>
> Features I'd like to see
> - Possibility to construct simple games via drag and drop without
> programming
> - Integration into an IDE
> - Based on Java or Python
> Pluses:
> - Good Tutorial
> - German documentation
Squeak. Smalltalk, but especially targeted at your requirements.
http://www.squeak.org/
Diez
-
Re: Game programming for kids: looking for open source 2D game developmentkit
Diez B. Roggisch schrieb:
> Max Kubierschky schrieb:
>> Hello,
>>
>> I'm planning to give a game programming course for kids of mixed age.
>> For this, I am looking for an open source 2D game development kit.
>> I am also willing to participate in the development of the development
>> kit.
>>
>> Features I'd like to see
>> - Possibility to construct simple games via drag and drop without
>> programming
>> - Integration into an IDE
>> - Based on Java or Python
>> Pluses:
>> - Good Tutorial
>> - German documentation
>
> Squeak. Smalltalk, but especially targeted at your requirements.
>
> http://www.squeak.org/
>
> Diez
What part of Squeak is targeted at 2D game development?
-
Re: Game programming for kids: looking for open source 2D game development kit
In <euik44$93e$1@online.de>, Max Kubierschky wrote:
> What part of Squeak is targeted at 2D game development?
http://www.squeak.org/Features/FunandGames/
And also take a look at http://www.squeakland.org/ (Kids play → Etoys)
which is a framework for children, that let's you paint objects and attach
behaviour to them.
Ciao,
Marc 'BlackJack' Rintsch
-
Re: Game programming for kids: looking for open source 2D game developmentkit
Max Kubierschky wrote:
> Diez B. Roggisch schrieb:
>
>> Max Kubierschky schrieb:
>>
>>> Hello,
>>>
>>> I'm planning to give a game programming course for kids of mixed age.
>>> For this, I am looking for an open source 2D game development kit.
>>> I am also willing to participate in the development of the
>>> development kit.
>>>
>>> Features I'd like to see
>>> - Possibility to construct simple games via drag and drop without
>>> programming
>>> - Integration into an IDE
>>> - Based on Java or Python
>>> Pluses:
>>> - Good Tutorial
>>> - German documentation
The Blender GameKit will do all that.
You can do simple games without programming.
There's a graphical integrated environment.
Programs can be written in Python.
There's a published book ("Blender GameKit")
German documentation may be hard to come by, though.
John Nagle
-
Re: Game programming for kids: looking for open source 2D game developmentkit
Laurent Pointal wrote:
> With Python:
> * pygame + build your drag'n drop features
> * if you like 3D, vpython.
>
>
> http://www.pygame.org/
> http://www.vpython.org/
Wow, vpython looks pretty need. I'm messing around with it right now
and reading the docs. But I can't find something...do you know how to
clear the contents of the current scene? I checked the attributes of the
display, but there is nothing like "empty" that would do it.
-
Re: Game programming for kids: looking for open source 2D game developmentkit
John Salerno wrote:
> Laurent Pointal wrote:
>
>> With Python:
>> * pygame + build your drag'n drop features
>> * if you like 3D, vpython.
>>
>>
>> http://www.pygame.org/
>> http://www.vpython.org/
>
> Wow, vpython looks pretty need.
neat* 
-
Re: Game programming for kids: looking for open source 2D game development kit
John Salerno wrote:
> Laurent Pointal wrote:
>
>> With Python:
>> * pygame + build your drag'n drop features
>> * if you like 3D, vpython.
>>
>>
>> http://www.pygame.org/
>> http://www.vpython.org/
>
> Wow, vpython looks pretty need. I'm messing around with it right now
> and reading the docs. But I can't find something...do you know how to
> clear the contents of the current scene?
No, I know about vpython existence, I tried demos but haven't used it (no
need).
You may use the development lists for such questions.
http://sourceforge.net/mail/?group_id=6013
A+
Laurent.
-
Re: Game programming for kids: looking for open source 2D game development kit
John Salerno <johnjsal@NOSPAMgmail.com> writes:
> Laurent Pointal wrote:
>
>> With Python:
>> * pygame + build your drag'n drop features
>> * if you like 3D, vpython.
>>
>>
>> http://www.pygame.org/
>> http://www.vpython.org/
>
> Wow, vpython looks pretty need. I'm messing around with it right now
> and reading the docs. But I can't find something...do you know how to
> clear the contents of the current scene? I checked the attributes of
> the display, but there is nothing like "empty" that would do it.
for x in scene.objects:
x.visible = 0
?
Similar Threads
-
By Application Development in forum Java
Replies: 0
Last Post: 06-29-2007, 12:35 AM
-
By Application Development in forum Java
Replies: 10
Last Post: 03-31-2007, 02:18 PM
-
By Application Development in forum Java-Games
Replies: 1
Last Post: 04-14-2006, 11:13 AM
-
By Application Development in forum Java-Games
Replies: 18
Last Post: 10-30-2004, 02:33 PM