Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/INdT/Quasi-Engine
Quasi Engine is a framework that intends to be a complete toolset to ease 2d game development, providing ready-to-use QML elements representing basic game entities needed by most of games.
https://github.com/INdT/Quasi-Engine
Last synced: 3 months ago
JSON representation
Quasi Engine is a framework that intends to be a complete toolset to ease 2d game development, providing ready-to-use QML elements representing basic game entities needed by most of games.
- Host: GitHub
- URL: https://github.com/INdT/Quasi-Engine
- Owner: INdT
- License: other
- Created: 2011-11-23T21:18:16.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2015-06-04T02:37:39.000Z (over 9 years ago)
- Last Synced: 2024-08-02T06:22:58.289Z (6 months ago)
- Language: C++
- Homepage: http://indt.github.com/Quasi-Engine/
- Size: 14.7 MB
- Stars: 55
- Watchers: 15
- Forks: 22
- Open Issues: 8
-
Metadata Files:
- Readme: README
- License: COPYING
Awesome Lists containing this project
- awesome-open-source-games - Quasi-Engine - QtQuick framework that intends to be a complete toolset to ease 2d game development. (Frameworks/Engines/Libraries / IOS)
README
A simple Qt-based 2D game engine.
========
1. Build
========1.1) Dependencies
* Qt5
Qt5 source repository: https://qt.gitorious.org/qt/qt5* Box2D >= 2.2.1
http://box2d.org1.2) Building
Available QMake parameters:
* QTPATH (Optional)
Prefix where Qt has been installed. It is required to install
Quasi's QML import plugin and related files.
The default path is /usr/lib/qt5* BOX2DPATH (Optional)
Path to Box2D installation. If your Linux distro packaging system
provides the required version, it is recommended to use it to install
the library and devel files.* BUILD_EXAMPLES (Optional)
Use BUILD_EXAMPLES=1 to build usage examples.Sample build from Quasi's root source tree:
$ mkdir build && cd build
$ qmake QTPATH=/opt/Qt5 BOX2DPATH=/usr BUILD_EXAMPLES=1 ..
$ make
$ sudo make install===========
2. Examples
===========If you have installed the QML plugin to the proper Qt import directory,
you can run the examples directly from their specific build directories.Example:
$ cd $(QUASI_BUILD_TREE)/examples/box2dpolygon_circle/
$ ./box2dpolygon_circleIf Quasi QML plugin was not installed you need first to export QML_IMPORT_PATH
environment variable:$ export QML_IMPORT_PATH=$(QUASI_BUILD_TREE)/src/imports