buffer8848 / kick

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

kick

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

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;
}

About

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


Languages

Language:C++ 65.6%Language:C 33.0%Language:GLSL 0.6%Language:CMake 0.5%Language:JavaScript 0.4%