Skip to content
forked from adam4813/Sigma

Sigma game engine for creating games on multiple platforms.

License

Notifications You must be signed in to change notification settings

aponigricon/Sigma

 
 

Repository files navigation

Sigma

The Sigma game engine for creating games on multiple platforms. The name Sigma was chosen due to its meaning in math of summation notation. In Sigma, engine components are assigned to entities, and it is the sum of all the components that makes an entity.

Requires CMake and one of the following compilers:

  • GCC 4.8 or newer;
  • Clang 3.3 or newer;
  • Visual Studio 2010 or newer;

Contributing

The easiest way to contribute is to fork and experiment. To better understand the organization please refer to this drawing.

Coding standards and practices can be found here.

Installing

Sigma requires the following dependencies: <<<<<<< HEAD

  • GLEW 1.5.2 or newer, not required on OS X; =======
  • GLEW 1.5.2 or newer;

Web GUI now uses Chromium Embedded Framework.

b27385e1b5d96c34ecc6ea1671f1fe756d99e0f7

Sigma on Linux also requires GTK+ 2, due to usage of Chromium Embedded Framework. When building these libraries from source, always build them as shared objects (.so). In cmake-builds, this can be done using cmake -DBUILD_SHARED_LIBS=ON.

You'll also need a package of assets. Unpack it in the build/bin/ directory.

Setting up Chromium Embedded Framework

Make sure you use a binary release from Adobe. Use the latest version that is NOT marked as dev (trunk).

  1. Unzip the downloaded tarball.
  2. This step depends on your platform. Make sure to use the Release build mode.
    • Windows build the included libcef_dll_wrapper.vcxproj project
    • Linux run make libcef_dll_wrapper BUILDTYPE=Release
    • OS X use the cefclient.xcodeproj Xcode project.
  3. Make cef/ and cef/bin/ directories in Sigma/
  4. Copy the out/Release/obj.target/libcef_dll_wrapper directory, if any, and the contents of Resources/ directories into Sigma/cef/bin/
  5. Copy the contents of include/ directory into Sigma's include/.
  6. Copy out/Release/obj.target/libcef_dll_wrapper.a (or .lib) to Sigma/cef/
  7. This step also depends on your platform.
    • Windows copy all the .dll files in Release/ to Sigma/cef/bin, then copy the .lib file into Sigma/cef/
    • Linux or OS X copy the entire contents of Release/ into Sigma/cef/bin/
  8. On Linux and OSX, make a symlink pointing to libcef.so (or .dylib) in the cef/ directory.
  9. Make a symlink pointing to Sigma/cef/bin/libcef_dll_wrapper in the cef/ directory. libcef_dll_wrapper and libcef_dll_wrapper.a must appear in the same place, otherwise you will get a "Malformed Archive" error when linking.
  • If you get "Multiply defined symbols" errors building Sigma on Windows with Visual Studio, then make these changes in the libcef_dll_wrapper properties: C/C++ / Preprocessor, edit the definitions to set _HAS_EXCEPTIONS=1 instead of 0; under C/C++ / Code generation, select the /MDd or /MD runtime library; rebuild and copy the libcef_dll_wrapper.lib to cef/ directory.

Building

=======

Sigma on Linux also requires GTK+ 2, due to usage of Chromium Embedded Framework.

You'll also need a package of assets. Unpack it in the build/bin/ directory.

Setting up Chromium Embedded Framework

<<<<<<< HEAD Chromium Embedded Framework is not a standard library that is thrown into compiler's directories.

Make sure you use a binary release from Adobe. Sigma is developed using the latest stable version.

  1. Unzip the downloaded tarball.

  2. This step depends on your platform. On Windows, build the included libcef_dll_wrapper.vcxproj project. On Linux, run make libcef_dll_wrapper. On OS X, use the cefclient.xcodeproj Xcode project.

  3. Copy the libcef_dll_wrapper library and directory of the same name, if any, and the contents of Debug/ and Resources/ directories into Sigma's build/bin/. ======= Make sure you use a binary release from Adobe. Use the latest version that is NOT marked as dev (trunk).

  4. Unzip the downloaded tarball.

  5. This step depends on your platform. On Windows, build the included libcef_dll_wrapper.vcxproj project. On Linux, run make libcef_dll_wrapper BUILDTYPE=Release. On OS X, use the cefclient.xcodeproj Xcode project. Make sure to use the Release build mode. <<<<<<< HEAD

  6. Copy out/Release/obj.target/libcef_dll_wrapper.a (or .lib), out/Release/obj.target/libcef_dll_wrapper directory, if any, and the contents of Release/ and Resources/ directories into Sigma's build/bin/.

Fixed some obnoxious errors. =======

  1. Copy out/Release/obj.target/libcef_dll_wrapper directory, if any, and the contents of Resources/ directories into Sigma's build/bin/.

Edited the README section to have stuff placed in the slightly more predictable location

  1. Copy the contents of include/ directory into Sigma's include/.
  2. Copy out/Release/obj.target/libcef_dll_wrapper.a (or .lib) to a cef/ directory in the Sigma root (create the cef/ directory if it does not exist)
  3. This step also depends on your platform. On Windows copy all the .dll files in Release/ to Sigma's build/bin/, then copy the .lib file into Sigma's cef/ directory. On Linux or OS X copy the entire contents of Release/ into Sigma's build/bin/.
  4. On Linux and OSX, make a symlink pointing to libcef.so (or .dylib) in the cef/ directory.
  5. If you get the error "malformed archive" when building, make a symlink pointing to libcef_dll_wrapper directory in the cef/ directory.

Building

Web GUI now uses Chromium Embedded Framework. Use CMake to create makefiles or projects. The resulting executable will be saved in build/bin/.

OS X

If you want to compile Sigma on OS X, your system must be running OS X 10.7 or later. You will need to have installed Xcode and, unless your system is running 10.9, the Command Line Tools. Both can be downloaded from the Apple Developer Website.

<<<<<<< HEAD <<<<<<< HEAD Before you can build Sigma, you'll first need to install the dependencies separately. Using a package manager, such as MacPorts, is recommended. Sigma can only be built as a 32-bit executable under OS X. All dependencies, except cmake, that you install must include a 32-bit slice.

Before you can build Sigma, you'll first need to install the dependencies separately. Using a package manager, such as MacPorts, is recommended.

Web GUI now uses Chromium Embedded Framework. ======= Before you can build Sigma, you'll first need to install the dependencies separately. Using a package manager, such as MacPorts, is recommended. b27385e1b5d96c34ecc6ea1671f1fe756d99e0f7

If MacPorts is present, you can use the following commands to install CMake, GLM, GLFW, libogg and libvorbis:

sudo port install cmake
sudo port install glm +universal
sudo port install glfw +universal
sudo port install libogg +universal
sudo port install libvorbis +universal

The current Macports version of Bullet does not include all of the libraries Sigma depends on. You will need to compile Bullet manually.

svn checkout http://bullet.googlecode.com/svn/trunk/ bullet-read-only
cd bullet-read-only
cmake . -G "Unix Makefiles" -DCMAKE_OSX_ARCHITECTURES='i386;x86_64' -DBUILD_DEMOS=OFF
make -j10 && sudo make install 

Sigma on OS X requires a patched version of SOIL that must be installed manually.

git clone https://github.com/DeVaukz/SOIL.git
cd SOIL
cmake . -G "Unix Makefiles"
make -j10 && sudo make install 

Once all the dependencies are installed, you can build Sigma.

mkdir build/
cd build/
cmake ..
make

Running

(Unix/Linux/OS X)

The binary Sigma is written to build/bin, build/bin/debug, or build/debug/bin

On OS X, you must launch Sigma from a shell in the build directory. Launching Sigma through the Finder will not set the working directory correctly.

Visual Studio

You must change the startup project via right-clicking on the project in the solution explorer in order for Debugging to launch the correct program. Also you must go into the project's properties, and under the 'Debugging' category change the 'Working Directory' to '$(OutDir)'.

Xcode

On OS X, CMake can generate an Xcode project for Sigma.

mkdir build/
cd build/
cmake .. -G Xcode

You must change the current scheme to Sigma by clicking on the scheme popup menu and selecting Sigma. You can also change the working directory used when Sigma is started by Xcode. Select Edit Scheme from the scheme popup menu, switch to the Options tab, check the box next to Working Directory, and enter the path to the Sigma assets in the text field.

About

Sigma game engine for creating games on multiple platforms.

Resources

License

Stars

Watchers

Forks

Packages

No packages published