integrados players. creo.
This commit is contained in:
parent
704bbb068c
commit
45f1051b8c
14 changed files with 86 additions and 27 deletions
|
@ -14,8 +14,8 @@ SOURCES += main.cpp \
|
|||
menu.cpp \
|
||||
combat.cpp \
|
||||
player.cpp \
|
||||
enemy.cpp \
|
||||
iaenemy.cpp
|
||||
iaenemy.cpp \
|
||||
actor.cpp
|
||||
|
||||
HEADERS += \
|
||||
game.hpp \
|
||||
|
@ -28,5 +28,5 @@ HEADERS += \
|
|||
menu.hpp \
|
||||
combat.hpp \
|
||||
player.hpp \
|
||||
enemy.hpp \
|
||||
iaenemy.hpp
|
||||
iaenemy.hpp \
|
||||
actor.hpp
|
||||
|
|
7
VaporWaveWars/actor.cpp
Normal file
7
VaporWaveWars/actor.cpp
Normal file
|
@ -0,0 +1,7 @@
|
|||
#include "actor.hpp"
|
||||
|
||||
Actor::Actor() {}
|
||||
|
||||
void Actor::draw(sf::RenderWindow *window) {
|
||||
|
||||
}
|
|
@ -3,10 +3,10 @@
|
|||
|
||||
#include "commons.hpp"
|
||||
|
||||
class Enemy
|
||||
class Actor
|
||||
{
|
||||
public:
|
||||
Enemy();
|
||||
Actor();
|
||||
virtual bool update(float deltaTime, sf::RenderWindow *window) = 0;
|
||||
void draw(sf::RenderWindow *window) ;
|
||||
virtual bool event(sf::Event e) = 0;
|
|
@ -71,7 +71,7 @@ void Button::handleMouseEvent(sf::Event& event){
|
|||
void Button::initTexture(std::string path){
|
||||
_clicks = 0;
|
||||
_state = ButtonState::off;
|
||||
if(!_texture.loadFromFile(path)) std::cout << "failed to load button texture!!" << std::endl;
|
||||
ASSERT(_texture.loadFromFile(path));
|
||||
setTexture(_texture);
|
||||
_xSize = _texture.getSize().x;
|
||||
_ySize = _texture.getSize().y/4;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#include "scene.hpp"
|
||||
#include "player.hpp"
|
||||
#include "iaenemy.hpp"
|
||||
#include "enemy.hpp"
|
||||
#include "actor.hpp"
|
||||
|
||||
class Combat : public Scene {
|
||||
public:
|
||||
|
@ -20,10 +20,9 @@ public:
|
|||
void draw(sf::RenderWindow *window) final override;
|
||||
void updateEvents(sf::Event e) final override;
|
||||
private:
|
||||
Compas compas;
|
||||
bool playerOneTurn, ia;
|
||||
Player player;
|
||||
Enemy *enemy;
|
||||
Actor *enemy;
|
||||
};
|
||||
|
||||
#endif // COMBAT_H
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
#include "enemy.hpp"
|
||||
|
||||
Enemy::Enemy() {}
|
||||
|
||||
void Enemy::draw(sf::RenderWindow *window) {
|
||||
|
||||
}
|
|
@ -26,6 +26,7 @@ void Game::run() {
|
|||
float time = c.getElapsedTime().asSeconds();
|
||||
float deltaTime = time-oldTime;
|
||||
oldTime = time;
|
||||
//std::cout << deltaTime << std::endl;
|
||||
update(deltaTime, &window);
|
||||
draw( &window);
|
||||
}
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#ifndef IAENEMY_H
|
||||
#define IAENEMY_H
|
||||
|
||||
#include "enemy.hpp"
|
||||
#include "actor.hpp"
|
||||
|
||||
class IaEnemy : public Enemy {
|
||||
class IaEnemy : public Actor {
|
||||
public:
|
||||
IaEnemy();
|
||||
bool update(float deltaTime, sf::RenderWindow *window) final override;
|
||||
|
|
|
@ -32,7 +32,7 @@ void Menu::updateEvents(sf::Event e){
|
|||
}
|
||||
MyGame* g = static_cast<MyGame*>(Game::i());
|
||||
if (_start.getClicks() > 0){
|
||||
// g->changeScene(GameScene::inGame);
|
||||
g->changeScene(GameScene::inGame);
|
||||
std::cout << "Game not ready to be played. Please Wait." << std::endl;
|
||||
}
|
||||
else if(_exit.getClicks() > 0) g->isRunning = false;
|
||||
|
|
|
@ -4,6 +4,9 @@ MyGame::MyGame() {
|
|||
_scene = GameScene::menu;
|
||||
_scenes = std::vector<Scene*>(SCENE_NUM);
|
||||
_scenes[GameScene::menu] = &_menu;
|
||||
_scenes[GameScene::inGame] = &_combat;
|
||||
_scenes[GameScene::help] = &_menu;
|
||||
_scenes[GameScene::credits] = &_menu;
|
||||
std::cout << "in menu" << std::endl;
|
||||
}
|
||||
|
||||
|
@ -11,7 +14,6 @@ MyGame::~MyGame() {
|
|||
}
|
||||
|
||||
MyGame* i(){
|
||||
return static_cast<MyGame*>(Game::i());
|
||||
}
|
||||
|
||||
void MyGame::changeScene(GameScene::gameScene n){
|
||||
|
@ -20,7 +22,7 @@ void MyGame::changeScene(GameScene::gameScene n){
|
|||
|
||||
// Main game loop
|
||||
void MyGame::update(float deltaTime, sf::RenderWindow*window) {
|
||||
// std::cout << deltaTime << std::endl;
|
||||
// std::cout << deltaTime << std::endl;
|
||||
sf::Event event;
|
||||
while(window->pollEvent(event)){
|
||||
switch (event.type) {
|
||||
|
@ -36,7 +38,7 @@ void MyGame::update(float deltaTime, sf::RenderWindow*window) {
|
|||
case (sf::Event::MouseButtonPressed):
|
||||
case (sf::Event::MouseButtonReleased):
|
||||
|
||||
_scenes[_scene]->updateEvents(event);
|
||||
_scenes[_scene]->updateEvents(event);
|
||||
switch(_scene){
|
||||
case(GameScene::menu):
|
||||
//std::cout << "still in menu" << std::endl;
|
||||
|
@ -52,7 +54,7 @@ void MyGame::update(float deltaTime, sf::RenderWindow*window) {
|
|||
}
|
||||
|
||||
// do shit
|
||||
_scenes[_scene]->update(deltaTime,window);
|
||||
_scenes[_scene]->update(deltaTime,window);
|
||||
}
|
||||
|
||||
void MyGame::draw(sf::RenderWindow*window) {
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
#include "game.hpp"
|
||||
|
||||
#include "menu.hpp"
|
||||
|
||||
#include "combat.hpp"
|
||||
class MyGame : public Game{
|
||||
public:
|
||||
MyGame();
|
||||
|
@ -14,6 +14,7 @@ private:
|
|||
GameScene::gameScene _scene;
|
||||
std::vector<Scene*> _scenes;
|
||||
Menu _menu;
|
||||
Combat _combat;
|
||||
virtual void update(float deltaTime, sf::RenderWindow *window) final override;
|
||||
virtual void draw(sf::RenderWindow *window) final override;
|
||||
};
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
|
||||
#include "commons.hpp"
|
||||
#include "compas.hpp"
|
||||
#include "enemy.hpp"
|
||||
class Player : public Enemy {
|
||||
#include "actor.hpp"
|
||||
class Player : public Actor {
|
||||
public:
|
||||
Player();
|
||||
bool update(float deltaTime, sf::RenderWindow *window) final override;
|
||||
|
|
34
VaporWaveWars/playscene.cpp
Normal file
34
VaporWaveWars/playscene.cpp
Normal file
|
@ -0,0 +1,34 @@
|
|||
#include "playscene.hpp"
|
||||
|
||||
PlayScene::PlayScene(){
|
||||
|
||||
}
|
||||
|
||||
void PlayScene::update(float deltaTime, sf::RenderWindow*window){
|
||||
//float dx = InputManager::action(InputAction::moveX0);
|
||||
//_buttons[0]->move(dx,0);
|
||||
//std::cout << dx << std::endl;
|
||||
for(unsigned int i = 0; i < _buttons.size(); ++i){
|
||||
_buttons[i]->update(window->mapPixelToCoords(sf::Vector2i(sf::Mouse::getPosition(*window))));
|
||||
}
|
||||
}
|
||||
|
||||
void PlayScene::draw(sf::RenderWindow* window){
|
||||
for(unsigned int i = 0; i < _buttons.size(); ++i){
|
||||
window->draw(*_buttons[i]);
|
||||
}
|
||||
}
|
||||
|
||||
void PlayScene::updateEvents(sf::Event e){
|
||||
// std::cout << "update menu buttons" << std::endl;
|
||||
for(unsigned int i = 0; i < _buttons.size(); ++i){
|
||||
_buttons[i]->handleMouseEvent(e);
|
||||
}
|
||||
MyGame* g = static_cast<MyGame*>(Game::i());
|
||||
if (_start.getClicks() > 0){
|
||||
// g->changeScene(GameScene::inGame);
|
||||
std::cout << "Game not ready to be played. Please Wait." << std::endl;
|
||||
}
|
||||
else if(_exit.getClicks() > 0) g->isRunning = false;
|
||||
|
||||
}
|
22
VaporWaveWars/playscene.hpp
Normal file
22
VaporWaveWars/playscene.hpp
Normal file
|
@ -0,0 +1,22 @@
|
|||
#ifndef PLAYSCENE_HPP
|
||||
#define PLAYSCENE_HPP
|
||||
|
||||
#include "scene.hpp"
|
||||
class PlayScene : public Scene{
|
||||
public:
|
||||
PlayScene();
|
||||
PlayScene(const Menu& m) = delete;
|
||||
PlayScene(const Menu&& m) = delete;
|
||||
PlayScene& operator=(Menu& m) = delete;
|
||||
PlayScene& operator=(Menu&& m) = delete;
|
||||
void update(float deltaTime, sf::RenderWindow *window) final override;
|
||||
void draw(sf::RenderWindow *window) final override;
|
||||
void updateEvents(sf::Event e) final override;
|
||||
|
||||
private:
|
||||
sf::Texture _backgroundTexture;
|
||||
sf::Sprite background;
|
||||
|
||||
};
|
||||
|
||||
#endif // PLAYSCENE_HPP
|
Reference in a new issue