2013-12-12 11:58:14 +01:00
|
|
|
#ifndef _TESTGLOBABLS_HPP_
|
|
|
|
#define _TESTGLOBABLS_HPP_
|
|
|
|
|
2016-09-09 22:13:22 +02:00
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
#include <GameConfig.hpp>
|
|
|
|
#include <GameWindow.hpp>
|
|
|
|
#include <core/Logger.hpp>
|
2015-04-18 02:11:17 +02:00
|
|
|
#include <engine/GameData.hpp>
|
2016-04-15 02:06:10 +02:00
|
|
|
#include <engine/GameState.hpp>
|
2016-09-09 22:13:22 +02:00
|
|
|
#include <engine/GameWorld.hpp>
|
2014-05-29 10:10:08 +02:00
|
|
|
#include <glm/gtx/string_cast.hpp>
|
2013-12-12 11:58:14 +01:00
|
|
|
|
2016-09-09 22:13:22 +02:00
|
|
|
std::ostream& operator<<(std::ostream& stream, glm::vec3 const& v);
|
2014-05-29 10:10:08 +02:00
|
|
|
|
2016-05-19 22:09:08 +02:00
|
|
|
// Boost moved the print_log_value struct in version 1.59
|
|
|
|
// TODO: use another testing library
|
|
|
|
#if BOOST_VERSION >= 105900
|
2016-09-09 22:13:22 +02:00
|
|
|
#define BOOST_NS_MAGIC namespace tt_detail {
|
|
|
|
#define BOOST_NS_MAGIC_CLOSING }
|
2016-05-19 22:09:08 +02:00
|
|
|
#else
|
2016-09-09 22:13:22 +02:00
|
|
|
#define BOOST_NS_MAGIC
|
|
|
|
#define BOOST_NS_MAGIC_CLOSING
|
2016-05-19 22:09:08 +02:00
|
|
|
#endif
|
|
|
|
|
2016-09-09 22:13:22 +02:00
|
|
|
namespace boost {
|
|
|
|
namespace test_tools {
|
|
|
|
BOOST_NS_MAGIC
|
|
|
|
template <>
|
2014-05-29 10:10:08 +02:00
|
|
|
struct print_log_value<glm::vec3> {
|
2016-09-09 22:13:22 +02:00
|
|
|
void operator()(std::ostream& s, glm::vec3 const& v) {
|
|
|
|
s << glm::to_string(v);
|
|
|
|
}
|
2014-05-29 10:10:08 +02:00
|
|
|
};
|
2016-09-09 22:13:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
BOOST_NS_MAGIC_CLOSING
|
|
|
|
|
|
|
|
namespace boost {
|
|
|
|
namespace test_tools {
|
|
|
|
BOOST_NS_MAGIC
|
|
|
|
template <>
|
2014-08-11 18:58:43 +02:00
|
|
|
struct print_log_value<std::nullptr_t> {
|
2016-09-09 22:13:22 +02:00
|
|
|
void operator()(std::ostream& s, std::nullptr_t) {
|
|
|
|
s << "nullptr";
|
|
|
|
}
|
2014-05-29 12:12:40 +02:00
|
|
|
};
|
2016-09-09 22:13:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
BOOST_NS_MAGIC_CLOSING
|
|
|
|
|
|
|
|
namespace boost {
|
|
|
|
namespace test_tools {
|
|
|
|
BOOST_NS_MAGIC
|
|
|
|
template <>
|
2016-08-16 01:53:27 +02:00
|
|
|
struct print_log_value<GameString> {
|
2016-09-09 22:13:22 +02:00
|
|
|
void operator()(std::ostream& s, GameString const& v) {
|
|
|
|
for (GameString::size_type i = 0u; i < v.size(); ++i) {
|
|
|
|
s << (char)v[i];
|
|
|
|
}
|
|
|
|
}
|
2016-08-16 01:53:27 +02:00
|
|
|
};
|
2016-09-09 22:13:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
BOOST_NS_MAGIC_CLOSING
|
2016-08-16 01:53:27 +02:00
|
|
|
|
2016-05-19 22:09:08 +02:00
|
|
|
#undef BOOST_NS_MAGIC
|
|
|
|
#undef BOOST_NS_MAGIC_CLOSING
|
2014-05-29 12:12:40 +02:00
|
|
|
|
2016-09-09 22:13:22 +02:00
|
|
|
class Global {
|
2013-12-12 11:58:14 +01:00
|
|
|
public:
|
2016-09-09 22:13:22 +02:00
|
|
|
GameWindow window;
|
2016-06-16 22:11:55 +02:00
|
|
|
#if RW_TEST_WITH_DATA
|
2016-09-09 22:13:22 +02:00
|
|
|
GameData* d;
|
|
|
|
GameWorld* e;
|
|
|
|
GameState* s;
|
|
|
|
Logger log;
|
|
|
|
WorkContext work;
|
2016-06-16 22:11:55 +02:00
|
|
|
#endif
|
|
|
|
|
2016-09-09 22:13:22 +02:00
|
|
|
Global() {
|
|
|
|
if (SDL_Init(SDL_INIT_VIDEO) < 0)
|
|
|
|
throw std::runtime_error("Failed to initialize SDL2!");
|
2016-06-22 12:29:39 +02:00
|
|
|
|
2016-09-09 22:13:22 +02:00
|
|
|
window.create("Tests", 800, 600, false);
|
|
|
|
window.hideCursor();
|
2016-06-22 12:29:39 +02:00
|
|
|
|
2016-06-16 22:11:55 +02:00
|
|
|
#if RW_TEST_WITH_DATA
|
2016-09-09 22:13:22 +02:00
|
|
|
d = new GameData(&log, &work, getGamePath());
|
2016-05-02 18:38:04 +02:00
|
|
|
|
2016-09-09 22:13:22 +02:00
|
|
|
d->load();
|
2016-05-02 18:38:04 +02:00
|
|
|
|
2016-09-09 22:13:22 +02:00
|
|
|
e = new GameWorld(&log, &work, d);
|
|
|
|
s = new GameState;
|
|
|
|
e->state = s;
|
2014-02-28 12:23:51 +01:00
|
|
|
|
2016-09-09 22:13:22 +02:00
|
|
|
e->dynamicsWorld->setGravity(btVector3(0.f, 0.f, 0.f));
|
2014-06-06 13:18:32 +02:00
|
|
|
|
2016-09-09 22:13:22 +02:00
|
|
|
while (!e->_work->isEmpty()) {
|
|
|
|
std::this_thread::yield();
|
|
|
|
}
|
2016-06-16 22:11:55 +02:00
|
|
|
#endif
|
2016-09-09 22:13:22 +02:00
|
|
|
}
|
2013-12-12 11:58:14 +01:00
|
|
|
|
2016-09-09 22:13:22 +02:00
|
|
|
~Global() {
|
|
|
|
window.close();
|
2016-06-16 22:11:55 +02:00
|
|
|
#if RW_TEST_WITH_DATA
|
2016-09-09 22:13:22 +02:00
|
|
|
delete e;
|
2016-06-16 22:11:55 +02:00
|
|
|
#endif
|
2016-09-09 22:13:22 +02:00
|
|
|
}
|
2014-05-25 23:30:50 +02:00
|
|
|
|
2016-06-16 22:11:55 +02:00
|
|
|
#if RW_TEST_WITH_DATA
|
2016-09-09 22:13:22 +02:00
|
|
|
static std::string getGamePath() {
|
|
|
|
return GameConfig("openrw.ini").getGameDataPath();
|
|
|
|
}
|
2016-06-16 22:11:55 +02:00
|
|
|
#endif
|
2016-06-22 12:29:39 +02:00
|
|
|
|
2016-09-09 22:13:22 +02:00
|
|
|
static Global& get() {
|
|
|
|
static Global g;
|
|
|
|
return g;
|
|
|
|
}
|
2013-12-12 11:58:14 +01:00
|
|
|
};
|
|
|
|
|
2016-06-22 12:29:39 +02:00
|
|
|
#endif
|