1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-15 06:52:34 +02:00
openrw/tests/test_Input.cpp

39 lines
1.2 KiB
C++
Raw Normal View History

#include <boost/test/unit_test.hpp>
2018-12-09 22:43:42 +01:00
#include <GameInput.hpp>
#include <engine/GameInputState.hpp>
BOOST_AUTO_TEST_SUITE(InputTests)
BOOST_AUTO_TEST_CASE(TestStateUpdate) {
BOOST_CHECK(GameInputState::Handbrake != GameInputState::Submission);
BOOST_CHECK(GameInputState::Jump != GameInputState::Sprint);
{
// Currently tests against hard-coded input
GameInputState state;
SDL_Event ev;
ev.type = SDL_KEYDOWN;
ev.key.keysym.sym = SDLK_SPACE;
GameInput::updateGameInputState(&state, ev);
// Check that the correct inputs report pressed
for (int c = 0; c < GameInputState::_MaxControls; ++c) {
2018-07-27 22:53:35 +02:00
switch (static_cast<GameInputState::Control>(c)) {
case GameInputState::Jump:
case GameInputState::Handbrake:
2018-07-27 22:53:35 +02:00
BOOST_CHECK(
state.pressed(static_cast<GameInputState::Control>(c)));
break;
default:
2018-07-27 22:53:35 +02:00
BOOST_CHECK(!state.pressed(
static_cast<GameInputState::Control>(c)));
break;
}
}
}
}
BOOST_AUTO_TEST_SUITE_END()