All Projects → mortennobel → kick

mortennobel / kick

Licence: other
Simple game engine for C++ 11 / OpenGL 3.x +

Programming Languages

C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language

kick

Simple game engine for C++ 11 / OpenGL 3.x +.

Note: kick is no longer actively maintained. Instead checkout :

Cross platform

  • Desktop OpenGL 3.x and 4.x
  • OpenGL ES 2.0 and 3.x
  • WebGL 1.0 (compiled using Emscripten)

Dependencies

  • SDL 2.x for platform abstraction layer
  • SDL Image 2.x for loading textures
  • GLM 0.9.x (OpenGL Mathematics). Header only library. Included in the build.
  • RapidJSON for JSON parsing. Header only library. Included in the build.
  • TinyTest. Header only library. Included in the build. Only used for unit-testing.

Build

Using premake4 for creating make files or other project files. For more info see: http://industriousone.com/premake

Online docs

http://mortennobel.github.io/kick/

Example usage

#include "kick/kick.h"

using namespace kick;

int main(int argc, char * argv[])
{
    Engine::init(argc, argv);
    auto scene = Engine::activeScene();
    auto camera = scene->createPerspectiveCamera();
    camera->gameObject()->transform()->setLocalPosition({0,0,10});
    scene->createSphere();
    scene->createDirectionalLight();
    Engine::startMainLoop();

    return 0;
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].