我正在定义一个 GameState 类和一个 MainMenuGameState 类。前者是一个抽象类,后者是继承它。但不知何故,我无法覆盖它的属性。
游戏状态.h
#ifndef _GAME_STATE_H_
#define _GAME_STATE_H_
#include <SDL2/SDL.h>
class GameState {
public:
virtual void loop(Uint32 deltaTime) = 0;
virtual void render() = 0;
virtual void event(SDL_Event * event) = 0;
bool stopRenderPropagation = false;
bool stopLoopPropagation = false;
};
#endif
MainMenuGameState.h
#ifndef _MAIN_MENU_GAME_STATE_H_
#define _MAIN_MENU_GAME_STATE_H_
#include "../Game.h"
class MainMenuGameState : public GameState {
public:
MainMenuGameState(Game * pGame);
void loop(Uint32 deltaTime);
void render();
void event(SDL_Event * event);
bool stopRenderPropagation = true;
bool stopLoopPropagation = true;
private:
Game * game;
int xOffset = 0;
int yOffset = 0;
};
#endif
因此,在实例化 MainMenuGameState 对象后,我期望stopRenderPropagation
和stopLoopPropagation
是true
,但它们是false
。
由于某种原因,我也没有运气在构造函数中覆盖它们。
MainMenuGameState::MainMenuGameState(Game * pGame) {
game = pGame;
xOffset = rand() % 20;
yOffset = rand() % 20;
stopRenderPropagation = true;
stopLoopPropagation = true;
}
在那之后,它们仍然是真实的。我不知道这是我的构造函数的问题,或者我是否误解了 C++ 中的多态性。
MainMenuGameState 的实例存储在 avector<GameState *>
中,这可能是问题吗?我正在访问这样的属性:
if(gameStates.begin() != gameStates.end()) {
std::vector<GameState *>::iterator it = gameStates.end();
do {
--it;
} while(it != gameStates.begin() && (*it)->stopLoopPropagation == false);
while(it != gameStates.end()) {
(*it)->loop(deltaTime);
++it;
}
}
谢谢您的帮助!