Difference between revisions of "Development tutorials"

From Pandora Wiki
Jump to: navigation, search
(added http://www.gp32x.com/board/index.php?/topic/58363-two-tutorials/page__p__935745&#entry935745)
(deleted dead links, updated new ones removed matchbox window manager since it was broken and out of date)
Line 1: Line 1:
 
== PND Quickstart ==
 
== PND Quickstart ==
See [[PND quickstart]] for a quick and dirty packaging tutorial.
+
See [[Introduction to PNDs]] for a nice and welcoming intro.
[http://www.gp32x.com/board/index.php?/topic/58363-two-tutorials/page__p__935745&#entry935745 quick make pnd tutorial]
+
[http://www.gp32x.com/board/index.php?/topic/58363-two-tutorials/page__p__935745 quick make pnd tutorial]
 
For common tasks, see the [[PND Cookbook]].
 
For common tasks, see the [[PND Cookbook]].
  
Line 14: Line 14:
  
 
There is a [http://www.glbasic.com/ GLBasic] [[GLBasic tutorial|tutorial on this wiki]] which is still a work in progress, but should get new parts fairly frequently. More information can be found on the [http://www.glbasic.com/forum/ GLBasic forums].
 
There is a [http://www.glbasic.com/ GLBasic] [[GLBasic tutorial|tutorial on this wiki]] which is still a work in progress, but should get new parts fairly frequently. More information can be found on the [http://www.glbasic.com/forum/ GLBasic forums].
 
[[GLBasic Publish]] - Prepare your GLBasic game for testing and publishing.
 
  
 
== SDL on Pandora ==
 
== SDL on Pandora ==
Line 44: Line 42:
 
These tutorials assume you know the basics of C++ programming, and know your way around a C++ compiler.
 
These tutorials assume you know the basics of C++ programming, and know your way around a C++ compiler.
  
* [http://linux.kewley.name/?p=57 Setting up a C++ Development Environment on the Pandora]
 
 
* [http://www.gp32x.com/board/index.php?/topic/58490-yactfeau/page__view__findpost__p__940518 Getting started with SDL on pandora]
 
* [http://www.gp32x.com/board/index.php?/topic/58490-yactfeau/page__view__findpost__p__940518 Getting started with SDL on pandora]
 
* [http://www.lazyfoo.net/SDL_tutorials/index.php Lazy Foo's Tutorials].  Not Pandora specific, but a good guide to getting your programming environment set up, along with many SDL tutorials.
 
* [http://www.lazyfoo.net/SDL_tutorials/index.php Lazy Foo's Tutorials].  Not Pandora specific, but a good guide to getting your programming environment set up, along with many SDL tutorials.
Line 55: Line 52:
 
*[[OpenGL ES 1.1 Tutorial]]
 
*[[OpenGL ES 1.1 Tutorial]]
 
**[[Combining OpenGL ES 1.1 and SDL to create a window on the Pandora]]
 
**[[Combining OpenGL ES 1.1 and SDL to create a window on the Pandora]]
*[[OpenGL ES 2.0 Tutorial]]
+
*[[GLES]]
  
 
== The Kernel ==
 
== The Kernel ==
Line 65: Line 62:
 
* [[Floating Point Optimization]]
 
* [[Floating Point Optimization]]
 
* [[Assembly Code Optimization]]
 
* [[Assembly Code Optimization]]
 
== Matchbox Window Manager ==
 
 
* [[Matchbox|Matchbox version]]
 
* [[xoo on ubuntu|Setting up xoo on Ubuntu 8.04/8.10]] (Theme Testing and Development)
 
 
  
 
== See Also ==
 
== See Also ==

Revision as of 12:32, 18 October 2013

PND Quickstart

See Introduction to PNDs for a nice and welcoming intro. quick make pnd tutorial For common tasks, see the PND Cookbook.

General Game development

Just start basic. Follow the Jump'n'Run tutorial (or any of the others). Copy their code. Change bits. Break it.. fix it. Write it over and over until you know what is happening where and why. Get a pandora or GP2X and cross-compile it for those platforms. Run your little creations on other devices (Android phones and iPhones are great). Little milestones like this will keep you motivated to continue learning.

Making a game, or programming a whole project is a massive undertaking. Be prepared to fail the first few attempts... quit at least 5 times only to come back and give it another go... and even then you might have only programmed Mahjong. If, at the end of all this, you are still keen, you can step it up to 3D graphics and start working on "bigger projects".

Remember.. no one can learn to program in a day... and I wouldn't expect anyone who started programming tomorrow to be able to produce a Mario clone, let alone quake 4 in a month.

GLBasic

There is a GLBasic tutorial on this wiki which is still a work in progress, but should get new parts fairly frequently. More information can be found on the GLBasic forums.

SDL on Pandora

SDL is NOT a game engine, but it will provide you with the foundations for putting stuff on the screen, getting keyboard and controller input and making sounds. All of these are basics in programming games.

You can locate a lot of SDL specific information at [1]

Getting started with SDL on the Pandora

(This portion assumes you already have a dev environment ready)

First, you need to grab the SDL libraries, you can either compile them yourself or grab some pre compiled libs. You can get the sources for SDL here and compile it yourself.

Or

You can get the pre compiled libraries here (they are named libSDL... etc). These are ipk files so windows user might need 7zip in order to open them. You will need both the 'normal' lib and the -dev library. You might want to get the SDL_image, SDL_mixer and other SDL_* libraries, since these add to general functionality of SDL.

Basic Pandora specific SDL Information

See SDL Controls

SDL Tutorials

These tutorials assume you know the basics of C++ programming, and know your way around a C++ compiler.

OpenGL on the Pandora

The Kernel

The Chipset

See Also