Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pinkeen/nimble
An attempt at creating a C++ sprite (game) engine
https://github.com/pinkeen/nimble
Last synced: 14 days ago
JSON representation
An attempt at creating a C++ sprite (game) engine
- Host: GitHub
- URL: https://github.com/pinkeen/nimble
- Owner: pinkeen
- Created: 2013-12-30T13:36:06.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-12-30T14:06:24.000Z (about 11 years ago)
- Last Synced: 2024-11-06T01:27:35.846Z (2 months ago)
- Language: C++
- Size: 1.91 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nimble
## What is it?
An unfinished sprite engine (2d game engine) that was written partially for my uni classes, partially as a side project.
The goal was to devise a flexible, modular architecture which didn't get into the programmers way, letting him focus on the game mechanics.
It was written in a very short amount of time so it does not represent the quality of code that I am capable of producting.
It may be useful as an example. The code that retesellates polygons in order to divide them into convex ones may be of interest to some.
## Building the source
You need the `scons` build system as well as some libraries in dev version:
* SDL
* SDL_image
* GL
* GLEWThe scons targets are:
* lib - builds the library
* examples - builds the examples
* all - builds all of the aforementionedBy default the library is built as a shared library. If you want the static version use `--static-library` switch with _scons_.
The debug build (with debug symbols) can be obtained by using the `--debug-build` switch.
### tl;dr
Just type `scons all` in the project dir and examine the `bin` subdir.
## LICENSE
Copyright © 2010 Filip Sobalski
Nimble - 2d sprite engineThis file is part of Nimble.
Nimble is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.You should have received a copy of the GNU General Public License
along with this program. If not, see .