GithubHelp home page GithubHelp logo

guillaume-haerinck / imac-tower-defense Goto Github PK

View Code? Open in Web Editor NEW
42.0 5.0 7.0 111.5 MB

OpenGl 4.4 game made with Entity Component System

License: MIT License

CMake 0.25% C 37.90% C++ 60.18% Objective-C 0.06% GLSL 0.09% Batchfile 0.02% Shell 0.01% HTML 1.49%
opengl game-2d tower-defense entity-component-system design-pattern game-development entt noesis noesisgui sdl2 cpp

imac-tower-defense's Introduction

Imac Tower Defense

An OpenGL 4.4 game made with Entity-Component-System design pattern. A gameplay video is visible here.

This is a student project for the French engineering school IMAC. If you're a french-speaker, you might consider to have a look at the post-mortem (it has a lot of images) inside the doc folder.

Logo Projet

Table of Contents

Features

Getting Started

Documentation

Additional info

SpriteSheet

Getting Started

You can play the game directly if you download the executable here (windows only).

Prerequisites

You must install CMake and a C++ compiler which handles C++ 14. More on the compiler on the next sections.

The project need your graphic card driver to be up to date, as it is using OpenGL 4.4 core profile (released in 2013, so it should be fine).

Linux

The recommended compiler is g++, minimum version required is g++ 6.1, which is included by default on many linux distribution. You can update it with :

sudo apt-get install build-essential

You will also need the OpenGl and SDL2 packages.

sudo apt-get install libsdl2-dev
sudo apt-get install libglu1-mesa-dev mesa-common-dev

Windows

The recommended compiler is MSVC. To install it you will need Visual Studio (which is not VSCode) and select the C++ development package during installation. The MingW compiler will work as well if you prefer to use it.

Screenshot

Build

The CMakeLists.txt file ensure that the project will work on Linux and Windows platforms.

You can build and launch the project in many different ways, we covered a few of them :

Option 1: Bash (Linux only)

Go to this folder with a terminal, and enter those commands.

cmake .
make
./bin/imac-tower-defense

It means that you are genererating a Makefile, then using it to build the project, and finally running the binaries from the current working directory (needed to find assets).

Option 2: Visual Studio (Windows only)

From Visual Studio 2017, you don't need to generate a visual studio project with cmake. You can simply open visual studio, browse the toolbar to File->Open->Cmake... and select the CMakeLists.txt at the root of this directory. From this point, you have to make sure that you are using a x86 build configuration, and running the imac-tower-defense target. If everything is done, simply press f5 or click on the green arrow at the top.

Screenshot

If you add files, you will need to re-generate the cache for a successfull build. To do so, right click on CMakeLists.txt and use Generate Cache for imac-tower-defense

Screenshot

Option 3: VSCode

You will need the CMakeTools extension from vector-of-bools. If you want to change the source code, I highly recommend using the C/C++ extension from Microsoft and the CMake extension from twxs.

Screenshot

From this point, when you will open the repository folder with VSCode, it will prompt you to configure the projet. You must select a x86 kit, for exemple the Visual Studio Community 2017 - x86 kit. Once the configuration is done, you can compile the project by pressing f7. The .exe file will be outputed in build/Debug folder. You can launch it by pressing f5, but make sure to pick your operating system.

Screenshot

Launch

Before launching the compiled binaries, make sure that the working directory is set to this folder, or the shaders files and images will not be found by the program. If you are unsure about how to do it, just copy the builded files to this folder before launching them. (by default, they will be in the bin/Debug folder).

Documentation

Philosophy

The project follows the Entity Component System design pattern. It has been made possible with the great ENTT library.

Our game is concieved as a state machine, and works like this architecture :

Event publisher

Folder structure

Folder Description
src Source code
main.cpp Entry point of the game
components Struct of data for entities
component-factories Creation of complex components
entity-factories Classes used to build entities
events Struct of data defining event types
graphics Wrapper classes for OpenGL objects
gui User interface logic
logger Error and log handlers for the game
services Functionalities needed anywhere, like playing a sound
systems Update the game and the entities based on their components (all the game logic is there)
core Constants, Game state machine and map loading
game-states The different states of the game (title menu, in-level, game over, ...)
level Read .ITD and .PPM files, and construct a graph from them
res Ressources loaded at runtime
audio Musics and sound effects used accross the game
fonts Fonts used accross the game
gui XAML files describing the view for each user interface
images Images and spritesheets used by the game
levels .ITD and .PPM describing the levels of the game
shaders GLSL shaders used by openGL for rendering
doc Documentation
lib Dependencies

Dependencies

  • OpenGL - The graphic API used
  • GLM - The opengl maths library
  • SDL2 - The library used to create a valid OpenGl context
  • ENTT - The ECS framework
  • SPDLog - Logging lib
  • NeosisGUI - GUI WPF lib for end users
  • Imgui - Immediate mode GUI lib for debugging
  • Debugbreak - Cross-platform code breakpoint header
  • StbImage - Load images
  • FMOD - Load and play adaptative audio
  • Box2D - 2D Physics library

Useful articles

Inspired by

Authors

  • Jules Fouchy - Processing star

  • Cyrielle Lassarre - Designer of the worlds

  • Guillaume Haerinck - Coding maniac

imac-tower-defense's People

Contributors

guillaume-haerinck avatar julesfouchy avatar unegraphistequicode avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

imac-tower-defense's Issues

Put your project in the EnTT in Action list

Hi, sorry to bother you, I'm the author of EnTT.

I found your project and I think it's very interesting in many ways, from the documentation to the post-mortem part. Probably you already know that but I'm also trying to give the users of EnTT a few examples to give them inspiration and more when they take their first steps.

What do you think about putting your repo in the list of projects made with EnTT?
You can make a PR or just close the issue with a ๐Ÿ‘ if you prefer, I'll add it for you.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.