!!! Box2D with version 2.4.1 !
@@ -36,3 +36,5 @@ Makefile
cmake_install.cmake
install_manifest.txt
+# ---> Custom makefile
+bin/
@@ -7,7 +7,7 @@
// todo Use HardContacts with scopes like Visuals in Renderer
-#include <Box2D/Box2D.h>
+#include <box2d/box2d.h>
class Controller {
public:
@@ -6,7 +6,7 @@
// Include
#include <set>
-#include <SDL.h>
+#include <SDL2/SDL.h>
class Input {
@@ -9,7 +9,7 @@
*/
// Includes
#include <iostream>
#include <vector>
#include "Input.h"
@@ -3,7 +3,7 @@
//
-#include <SDL_image.h>
+#include <SDL2/SDL_image.h>
#include "Renderer.h"
#define RAD_TO_DEG 57.2957795130f
@@ -5,7 +5,7 @@
#ifndef TINYSHOOTER_RENDERER_H
#define TINYSHOOTER_RENDERER_H
#include "Visual.h"
@@ -5,7 +5,8 @@
#ifndef TINYSHOOTER_VISUAL_H
#define TINYSHOOTER_VISUAL_H
+#include <vector>
/* class Visual :
* Describe something to show.
@@ -45,7 +45,7 @@ void Entity::establishPhysicalLink() {
std::cout << "Entity::establishPhysicalLink() > Body is invalid for a " << m_faction << " object." << std::endl;
return;
} else {
- m_body->SetUserData(this);
+ m_body->GetUserData().pointer = (uintptr_t) this;
}
#ifndef TINYSHOOTER_ENTITY_H
#define TINYSHOOTER_ENTITY_H
#include "../Graphics/Visual.h"
#ifndef TINYSHOOTER_SCULLINGQUERY_H
#define TINYSHOOTER_SCULLINGQUERY_H
class ScullingQuery : public b2QueryCallback {
@@ -84,7 +84,7 @@ void Soldier::update() {
incomingFixture = c->GetFixtureB();
// Detect bullet presence
- Entity *incomingEntity((Entity *) incomingFixture->GetBody()->GetUserData());
+ Entity *incomingEntity((Entity *) incomingFixture->GetBody()->GetUserData().pointer);
if (incomingEntity->getFaction() == BULLET) {
// Damage
@@ -73,7 +73,7 @@ void TinyWorld::collectVisuals(std::vector<Visual *> &scope, b2Vec2 center, b2Ve
Entity *currentEntity;
for (auto it(callback.getTab().begin()); it != callback.getTab().end(); it++) {
- currentEntity = (Entity *) (*it)->GetUserData();
+ currentEntity = (Entity *) (*it)->GetUserData().pointer;
scope.push_back(currentEntity->makeVisual());
#ifndef TINYSHOOTER_TINYWORLD_H
#define TINYSHOOTER_TINYWORLD_H
#include <list>
#include "Entity.h"
@@ -18,5 +18,5 @@ float b2Angle(const b2Vec2 &u) {
b2Vec2 b2Dir(const float angle) {
- return b2Vec2((float32) cos(angle), (float32) sin(angle));
+ return b2Vec2((float) cos(angle), (float) sin(angle));
#ifndef TINYSHOOTER_B2ANGLE_H
#define TINYSHOOTER_B2ANGLE_H
/**
* Give angle between u and v
@@ -0,0 +1,25 @@
+CXX=g++
+CXXFLAGS=
+LDFLAGS=-lSDL2 -lSDL2_image -lbox2d
+INC=
+LIB=
+
+EXEC=SpacyShooter
+SRC=$(shell find . -name '*.cpp')
+OBJ=$(SRC:.cpp=.o)
+$(EXEC): $(OBJ)
+ @mkdir -p bin
+ $(CXX) -o bin/$@ $^ $(LDFLAGS) $(LIB)
+%.o : %.cpp
+ $(CXX) -o $@ -c $< $(CXXFLAGS) $(INC)
+clean:
+ rm -rf $(OBJ)
+distclean: clean
+ rm -rf ./bin
+exec: $(EXEC)
+ ./bin/$(EXEC)