Jump to content


Game development resources


7 replies to this topic

#1 CodeCat

    It's a trap!

  • Gold Member
  • 6111 posts

Posted 01 May 2009 - 22:15

If you have any useful links related to game development, feel free to post them! (please edit your post if you want to add more afterwards)


Information

GameDev
Lots of tutorials and articles!

Lazy Foo' Productions
A series of game development tutorials for SDL, written in C++ and aimed at beginners.

NeHe productions
OpenGL tutorials for game developers. From beginner to advanced level. Uses a lot of Windows-only code though.


Libraries

OpenGL reference
A must for anyone learning or using OpenGL rendering. May be a bit technical for beginners, intended for people already familiar with OpenGL basics.

Simple DirectMedia Library (SDL)
A very useful library intended to provide basic platform-independent support for low-level system access. Ideal for low-level game development, i.e. if you decide to write your own game engine. Works well together with OpenGL, highly recommended over DirectX!

Edited by CodeCat, 02 May 2009 - 09:34.

CodeCat

Posted Image
Posted Image

Go dtiomsaítear do chód gan earráidí, is go gcríochnaítear do chláir go réidh. -Old Irish proverb

#2 Hobbesy

    Discount White Person

  • Gold Member
  • 3752 posts

Posted 02 May 2009 - 01:33

Sound Effects

The Freesound Project
The Freesound Project is a collaborative database of Creative Commons licensed sounds. Freesound focusses only on sound, not songs.

Edited by Høbbsey, 02 May 2009 - 01:34.


#3 Erik

    Feels green.

  • Project Leader
  • 978 posts
  • Projects: ZH: Frontlines

Posted 13 May 2009 - 09:20

On the freesounds site I can only listen and not DL :(

#4 JJ

    Half dead member

  • Project Leader
  • 3294 posts
  • Projects: Real life things, personal RA3 mod

Posted 13 May 2009 - 10:00

Try right clicking on the download link and click "Save link as...".

#5 Teron

    Absinth drinker

  • Member
  • 938 posts

Posted 10 September 2009 - 01:31

I'm surprised, that noone mentioned the OpenSource 3D Graphics Engine Ogre which I use for programming games. 8|
"It's not the cards you have, it's how you play them!" - Gambit (X-Men)

#6 CodeCat

    It's a trap!

  • Gold Member
  • 6111 posts

Posted 10 September 2009 - 08:44

It's only a 3D engine though, isn't it? Not a full game engine?
CodeCat

Posted Image
Posted Image

Go dtiomsaítear do chód gan earráidí, is go gcríochnaítear do chláir go réidh. -Old Irish proverb

#7 PLEXI

    Newbie

  • Project Team
  • 5 posts

Posted 10 September 2009 - 11:42

Yes, it's technically just a 3D Graphics engine.... but it can still be used to create some impressive games so I'd imagine it worth mentioning at least. It is free after all 8|
Posted Image

#8 Teron

    Absinth drinker

  • Member
  • 938 posts

Posted 12 September 2009 - 02:02

View PostCodeCat, on 10 Sep 2009, 10:44, said:

It's only a 3D engine though, isn't it? Not a full game engine?

Its "just" a graphic engine, yes, but with loads of plugins like physics etc. making it an excellent base for game developement :D :D

Features of it: (copied from Ogre)

Features Productivity features

* Simple, easy to use OO interface designed to minimise the effort required to render 3D scenes, and to be independent of 3D implementation i.e. Direct3D/OpenGL.
* Extensible example framework makes getting your application running is quick and simple
* Common requirements like render state management, spatial culling, dealing with transparency are done for you automatically saving you valuable time
* Clean, uncluttered design and full documentation of all engine classes
* Proven, stable engine used in several commercial products

Platform & 3D API support

* Direct3D and OpenGL support
* Windows (all major versions), Linux and Mac OSX support
* Builds on Visual C++ and Code::Blocks on Windows
* Builds on gcc 3+ on Linux / Mac OSX (using XCode)

Material / Shader support

* Powerful material declaration language allows you to maintain material assets outside of your code
* Supports vertex and fragment programs (shaders), both low-level programs written in assembler, and high-level programs written in Cg, DirectX9 HLSL, or GLSL and provides automatic support for many commonly bound constant parameters like worldview matrices, light state information, object space eye position etc
* Supports the complete range of fixed function operations such as multitexture and multipass blending, texture coordinate generation and modification, independent colour and alpha operations for non-programmable hardware or for lower cost materials
* Multiple pass effects, with pass iteration if required for the closest ‘n’ lights
* Support for multiple material techniques means you can design in alternative effects for a wide range of cards and OGRE automatically uses the best one supported
* Material LOD support; your materials can reduce in cost as the objects using them get further away
* Load textures from PNG, JPEG, TGA, BMP or DDS files, including unusual formats like 1D textures, volumetric textures, cubemaps and compressed textures (DXT/S3TC)
* Textures can be provided and updated in realtime by plugins, for example a video feed
* Easy to use projective texturing support

Meshes

* Flexible mesh data formats accepted, separation of the concepts of vertex buffers, index buffers, vertex declarations and buffer mappings
* Biquadric Bezier patches for curved surfaces
* Progressive meshes (LOD), manual or automatically generated
* Static geometry batcher

Animation

* Sophisticated skeletal animation support
o blending of multiple animations with variable weights
o variable/multiple bone weight skinning
o software and hardware-accelerated skinning pipelines with intelligent buffer sharing
o manual bone control
o Configurable interpolation modes, accuracy vs speed tradeoffs
* Flexible shape animation support
o Morph animation for legacy applications where you wish to perform simple linear blends between shape snapshots
o Pose animation for modern shape animation, allowing you to blend many poses at variable weights along a timeline, for example expression / mouth shapes to perform facial animation
o Both techniques can be implemented in hardware and software depending on hardware support
* Animation of SceneNodes for camera paths and similar techniques, using spline interpolation where needed
* Generic animation tracks can accept pluggable object adaptors to enable you to animate any parameter of any object over time

Scene Features

* Highly customisable, flexible scene management, not tied to any single scene type. Use predefined classes for scene organisation if they suit or plug in your own subclass to gain full control over the scene organisation
* Several example plugins demonstrate various ways of handling the scene specific to a particular type of layout (e.g. BSP, Octree)
* Hierarchical scene graph; nodes allow objects to be attached to each other and follow each others movements, articulated structures etc
* Multiple shadow rendering techniques, both modulative and additive techniques, stencil and texture based, each highly configurable and taking full advantage of any hardware acceleration available.
* Scene querying features

Special Effects

* Compositor system, allowing for full-screen postprocessing effects to be defined easily, via scripts if desired
* Particle Systems, including easily extensible emitters, affectors and renderers (customisable through plugins). Systems can be defined in text scripts for easy tweaking. Automatic use of particle pooling for maximum performance
* Support for skyboxes, skyplanes and skydomes, very easy to use
* Billboarding for sprite graphics
* Ribbon trails
* Transparent objects automatically managed (rendering order & depth buffer settings all set up for you)

Misc features

* Common resource infrastructure for memory management and loading from archives (ZIP, PK3)
* Flexible plugin architecture allows engine to be extended without recompilation
* ‘Controllers’ allow you to easily organise derived values between objects e.g. changing the colour of a ship based on shields left
* Debugging memory manager for identifying memory leaks
* ReferenceAppLayer provides an example of how to combine OGRE with other libraries, for example ODE for collision & physics
* XMLConverter to convert efficient runtime binary formats to/from XML for interchange or editing

Edited by Teron, 12 September 2009 - 02:04.

"It's not the cards you have, it's how you play them!" - Gambit (X-Men)



1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users