
OGLBricks
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
Simple puzzle game.
Features:
-OpenGL 1.1 rendering
-Customizable gameplay
-Portable - no installation required
-Cross-platform code
6 years ago
v0.1.1:
- new low-poly brick model.
- small render fix, may improve performance.
- one new 5-brick shape (missed in previous release).
6 years ago
v0.1.1:
- new low-poly brick model.
- small render fix, may improve performance.
- one new 5-brick shape (missed in previous release).
Drool
6 years ago
Report
argon-od
6 years ago
Actually, the source is on the homepage.
Report
Drool
6 years ago
Report
argon-od
6 years ago
Right now I'd rather implement some new features than learn how to create packages.
However, you can build it from sources. You will need Qt4 (4.8 preferably), GCC >= 4.4 and Assimp library (I think you need to install something like libassimp-dev).
Now, there may be an issue with linking executable to libassimp. If you got ld: cannot find -lassimp.dll error, try to change line 41 in bricks.pro file. It looks like this LIBS += -LD:../lib -lassimp.dll. Change it to LIBS += -L -lassimp. That way it should work, but I can't guarantee it yet.
If you're familiar with developing for Linux, you can join the project and create binaries and packages for your Linux distribution :)
Report