This is an old OpenGL project showing a 3D rendered environment of Lalbagh Fort I had done as an undergrad student. Long ago I lost the source codes of this piece of Art ;) (I didn't know about git back then). I've found it again recently as an attachment in one of my old email account and thought why not share it with the world :) (That's why you'll see that all code is comitted under the first commit) Please feel free to move around and fork it as you like.
Here's a Wikipedia link about Lalbagh Fort
Previously this project
windows.h
header file (I was using Windows back then) but now the dependency is removed and the code is made compatible only for Linux (because now all my machines run on Linux). I've tested it with Ubuntu 16.04 LTS version.
To Build this code you need the following dependencies: (This is for Ubuntu or debian based system)
- freeglut3 (sudo apt-get install freeglut3)
- freeglut3-dev (sudo apt-get install freeglut3-dev)
- libglui2c2 (Install it from here)
- libglui-dev (Install it from here)
Now run the following commands,
> g++ lalbagh.cpp -lGL -lGLU -lglut -g -o lalbagh
> ./lalbagh
And Voila!
Features not working right now:
- Camera movement (Will be fixed when I get some free time)