2016-07-02 20:49:31 +02:00
|
|
|
#include "DebugState.hpp"
|
2014-08-12 22:15:26 +02:00
|
|
|
#include <ai/PlayerController.hpp>
|
2016-09-09 22:13:20 +02:00
|
|
|
#include <data/WeaponData.hpp>
|
|
|
|
#include <engine/GameState.hpp>
|
|
|
|
#include <glm/gtc/quaternion.hpp>
|
|
|
|
#include <glm/gtx/string_cast.hpp>
|
2014-06-06 16:22:26 +02:00
|
|
|
#include <objects/CharacterObject.hpp>
|
2016-06-02 17:44:20 +02:00
|
|
|
#include <objects/InstanceObject.hpp>
|
2014-06-20 01:47:13 +02:00
|
|
|
#include <objects/VehicleObject.hpp>
|
2015-04-04 18:48:36 +02:00
|
|
|
#include <sstream>
|
2016-09-09 22:13:20 +02:00
|
|
|
#include "RWGame.hpp"
|
2014-05-31 09:18:50 +02:00
|
|
|
|
2016-06-17 00:31:05 +02:00
|
|
|
constexpr float kDebugEntryHeight = 14.f;
|
2016-10-18 23:00:53 +02:00
|
|
|
constexpr int kDebugFont = 2;
|
2016-06-17 00:31:05 +02:00
|
|
|
const glm::vec2 kDebugMenuOffset = glm::vec2(10.f, 50.f);
|
|
|
|
|
2016-09-09 22:13:20 +02:00
|
|
|
static void jumpCharacter(RWGame* game, CharacterObject* player,
|
|
|
|
const glm::vec3& target, bool ground = true) {
|
|
|
|
glm::vec3 newPosition = target;
|
|
|
|
if (ground) {
|
|
|
|
newPosition = game->getWorld()->getGroundAtPosition(newPosition) +
|
|
|
|
glm::vec3(0.f, 0.f, 1.f);
|
|
|
|
}
|
|
|
|
if (player) {
|
|
|
|
if (player->getCurrentVehicle()) {
|
|
|
|
player->getCurrentVehicle()->setPosition(newPosition);
|
|
|
|
} else {
|
|
|
|
player->setPosition(newPosition);
|
|
|
|
}
|
|
|
|
}
|
2015-01-22 12:11:16 +01:00
|
|
|
}
|
|
|
|
|
2016-10-18 23:00:53 +02:00
|
|
|
std::shared_ptr<Menu> DebugState::createDebugMenu() {
|
2016-09-09 22:13:20 +02:00
|
|
|
CharacterObject* player = nullptr;
|
|
|
|
if (game->getPlayer()) {
|
|
|
|
player = game->getPlayer()->getCharacter();
|
|
|
|
}
|
2016-06-17 00:31:05 +02:00
|
|
|
|
2016-10-18 23:00:53 +02:00
|
|
|
auto menu = Menu::create(
|
|
|
|
{{"Jump to Debug Camera",
|
|
|
|
[=] {
|
|
|
|
jumpCharacter(game, player,
|
|
|
|
_debugCam.position +
|
|
|
|
_debugCam.rotation * glm::vec3(3.f, 0.f, 0.f),
|
|
|
|
false);
|
|
|
|
}},
|
|
|
|
{"-Map", [=] { this->enterMenu(createMapMenu()); }},
|
|
|
|
{"-Vehicles", [=] { this->enterMenu(createVehicleMenu()); }},
|
|
|
|
{"-AI", [=] { this->enterMenu(createAIMenu()); }},
|
|
|
|
{"-Weapons", [=] { this->enterMenu(createWeaponMenu()); }},
|
|
|
|
{"Set Super Jump", [=] { player->setJumpSpeed(20.f); }},
|
|
|
|
{"Set Normal Jump",
|
|
|
|
[=] { player->setJumpSpeed(CharacterObject::DefaultJumpSpeed); }},
|
|
|
|
{"Full Health", [=] { player->getCurrentState().health = 100.f; }},
|
|
|
|
{"Full Armour", [=] { player->getCurrentState().armour = 100.f; }},
|
|
|
|
{"Cull Here",
|
|
|
|
[=] { game->getRenderer().setCullOverride(true, _debugCam); }}},
|
2016-10-20 00:34:08 +02:00
|
|
|
kDebugFont, kDebugEntryHeight);
|
2016-10-18 23:00:53 +02:00
|
|
|
|
|
|
|
menu->offset = kDebugMenuOffset;
|
2016-09-09 22:13:20 +02:00
|
|
|
|
|
|
|
// Optional block if the player is in a vehicle
|
|
|
|
auto cv = player->getCurrentVehicle();
|
|
|
|
if (cv) {
|
2016-10-18 23:00:53 +02:00
|
|
|
menu->lambda("Flip vehicle", [=] {
|
|
|
|
cv->setRotation(cv->getRotation() *
|
|
|
|
glm::quat(glm::vec3(0.f, glm::pi<float>(), 0.f)));
|
|
|
|
});
|
2016-09-09 22:13:20 +02:00
|
|
|
}
|
|
|
|
|
2016-10-18 23:00:53 +02:00
|
|
|
return menu;
|
2016-09-09 22:13:20 +02:00
|
|
|
}
|
2016-06-17 00:31:05 +02:00
|
|
|
|
2016-10-18 23:00:53 +02:00
|
|
|
std::shared_ptr<Menu> DebugState::createMapMenu() {
|
2016-09-09 22:13:20 +02:00
|
|
|
CharacterObject* player = nullptr;
|
|
|
|
if (game->getPlayer()) {
|
|
|
|
player = game->getPlayer()->getCharacter();
|
|
|
|
}
|
|
|
|
|
2016-10-18 23:00:53 +02:00
|
|
|
auto menu = Menu::create(
|
|
|
|
{{"Back", [=] { enterMenu(createDebugMenu()); }},
|
|
|
|
{"Jump to Docks",
|
|
|
|
[=] {
|
|
|
|
jumpCharacter(game, player, glm::vec3(1390.f, -837.f, 100.f));
|
|
|
|
}},
|
|
|
|
{"Jump to Garage",
|
|
|
|
[=] { jumpCharacter(game, player, glm::vec3(270.f, -605.f, 40.f)); }},
|
|
|
|
{"Jump to Airport",
|
|
|
|
[=] {
|
|
|
|
jumpCharacter(game, player, glm::vec3(-950.f, -980.f, 12.f));
|
|
|
|
}},
|
|
|
|
{"Jump to Hideout",
|
|
|
|
[=] {
|
|
|
|
jumpCharacter(game, player, glm::vec3(875.0, -309.0, 100.0));
|
|
|
|
}},
|
|
|
|
{"Jump to Luigi's",
|
|
|
|
[=] {
|
|
|
|
jumpCharacter(game, player, glm::vec3(902.75, -425.56, 100.0));
|
|
|
|
}},
|
|
|
|
{"Jump to Hospital",
|
|
|
|
[=] {
|
|
|
|
jumpCharacter(game, player, glm::vec3(1123.77, -569.15, 100.0));
|
|
|
|
}},
|
|
|
|
{"Unsolid garage doors",
|
|
|
|
[=] {
|
|
|
|
|
|
|
|
std::vector<std::string> garageDoorModels{
|
|
|
|
"8ballsuburbandoor", "amcogaragedoor",
|
|
|
|
"bankjobdoor", "bombdoor",
|
|
|
|
"crushercrush", "crushertop",
|
|
|
|
"door2_garage", "door3_garage",
|
|
|
|
"door4_garage", "door_bombshop",
|
|
|
|
"door_col_compnd_01", "door_col_compnd_02",
|
|
|
|
"door_col_compnd_03", "door_col_compnd_04",
|
|
|
|
"door_col_compnd_05", "door_jmsgrage",
|
|
|
|
"door_sfehousegrge", "double_garage_dr",
|
|
|
|
"impex_door", "impexpsubgrgdoor",
|
|
|
|
"ind_plyrwoor", "ind_slidedoor",
|
|
|
|
"jamesgrge_kb", "leveldoor2",
|
|
|
|
"oddjgaragdoor", "plysve_gragedoor",
|
|
|
|
"SalvGarage", "shedgaragedoor",
|
|
|
|
"Sub_sprayshopdoor", "towergaragedoor1",
|
|
|
|
"towergaragedoor2", "towergaragedoor3",
|
|
|
|
"vheistlocdoor"};
|
|
|
|
|
|
|
|
auto gw = game->getWorld();
|
|
|
|
for (auto& i : gw->instancePool.objects) {
|
|
|
|
auto obj = static_cast<InstanceObject*>(i.second);
|
|
|
|
if (std::find(garageDoorModels.begin(),
|
|
|
|
garageDoorModels.end(),
|
|
|
|
obj->getModelInfo<BaseModelInfo>()->name) !=
|
|
|
|
garageDoorModels.end()) {
|
|
|
|
obj->setSolid(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}}},
|
2016-10-20 00:34:08 +02:00
|
|
|
kDebugFont, kDebugEntryHeight);
|
2016-10-18 23:00:53 +02:00
|
|
|
|
|
|
|
menu->offset = kDebugMenuOffset;
|
|
|
|
return menu;
|
2016-06-17 00:31:05 +02:00
|
|
|
}
|
|
|
|
|
2016-10-18 23:00:53 +02:00
|
|
|
std::shared_ptr<Menu> DebugState::createVehicleMenu() {
|
|
|
|
auto menu = Menu::create({{"Back", [=] { enterMenu(createDebugMenu()); }}},
|
2016-10-20 00:34:08 +02:00
|
|
|
kDebugFont, kDebugEntryHeight);
|
2016-06-02 17:44:20 +02:00
|
|
|
|
2016-09-09 22:13:20 +02:00
|
|
|
const std::map<std::string, int> kVehicleTypes = {
|
|
|
|
{"Landstalker", 90}, {"Taxi", 110}, {"Firetruck", 97},
|
|
|
|
{"Police", 116}, {"Ambulance", 106}, {"Bobcat", 112},
|
|
|
|
{"Banshee", 119}, {"Rhino", 122}, {"Barracks", 123},
|
|
|
|
{"Rumpo", 130}, {"Columbian", 138}, {"Dodo", 126},
|
|
|
|
{"Speeder", 142}, {"Yakuza", 136},
|
|
|
|
};
|
2015-01-21 21:40:31 +01:00
|
|
|
|
2016-09-09 22:13:20 +02:00
|
|
|
for (auto& e : kVehicleTypes) {
|
2016-10-18 23:00:53 +02:00
|
|
|
menu->lambda(e.first, [=] { spawnVehicle(e.second); });
|
2016-09-09 22:13:20 +02:00
|
|
|
}
|
2016-06-17 00:31:05 +02:00
|
|
|
|
2016-10-18 23:00:53 +02:00
|
|
|
menu->offset = kDebugMenuOffset;
|
|
|
|
return menu;
|
2016-06-17 00:31:05 +02:00
|
|
|
}
|
|
|
|
|
2016-10-18 23:00:53 +02:00
|
|
|
std::shared_ptr<Menu> DebugState::createAIMenu() {
|
2016-10-20 00:34:08 +02:00
|
|
|
auto menu =
|
|
|
|
Menu::create({{"Back", [=] { this->enterMenu(createDebugMenu()); }}},
|
|
|
|
kDebugFont, kDebugEntryHeight);
|
2016-09-09 22:13:20 +02:00
|
|
|
|
|
|
|
const std::map<std::string, int> kPedTypes = {
|
|
|
|
{"Triad", 12}, {"Cop", 1}, {"SWAT", 2},
|
|
|
|
{"FBI", 3}, {"Fireman", 6}, {"Construction", 74},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (auto& e : kPedTypes) {
|
2016-10-18 23:00:53 +02:00
|
|
|
menu->lambda(e.first + " Follower", [=] { spawnFollower(e.second); });
|
2016-09-09 22:13:20 +02:00
|
|
|
}
|
|
|
|
|
2016-10-18 23:00:53 +02:00
|
|
|
menu->lambda("Kill All Peds", [=] {
|
|
|
|
for (auto& p : game->getWorld()->pedestrianPool.objects) {
|
|
|
|
if (p.second->getLifetime() == GameObject::PlayerLifetime) {
|
|
|
|
continue;
|
2016-09-09 22:13:20 +02:00
|
|
|
}
|
2016-10-18 23:00:53 +02:00
|
|
|
p.second->takeDamage({p.second->getPosition(),
|
|
|
|
p.second->getPosition(), 100.f,
|
|
|
|
GameObject::DamageInfo::Explosion, 0.f});
|
|
|
|
}
|
|
|
|
});
|
2016-06-17 00:31:05 +02:00
|
|
|
|
2016-10-18 23:00:53 +02:00
|
|
|
menu->offset = kDebugMenuOffset;
|
|
|
|
return menu;
|
|
|
|
}
|
2016-06-19 14:50:06 +02:00
|
|
|
|
2016-10-18 23:00:53 +02:00
|
|
|
std::shared_ptr<Menu> DebugState::createWeaponMenu() {
|
2016-10-20 00:34:08 +02:00
|
|
|
auto menu =
|
|
|
|
Menu::create({{"Back", [=] { this->enterMenu(createDebugMenu()); }}},
|
|
|
|
kDebugFont, kDebugEntryHeight);
|
2016-06-19 14:50:06 +02:00
|
|
|
|
2016-10-19 03:22:33 +02:00
|
|
|
for (int i = 1; i < kMaxInventorySlots; ++i) {
|
2016-09-09 22:13:20 +02:00
|
|
|
auto& name = getWorld()->data->weaponData[i]->name;
|
2016-10-18 23:00:53 +02:00
|
|
|
menu->lambda(name, [=] { giveItem(i); });
|
2016-09-09 22:13:20 +02:00
|
|
|
}
|
2014-07-09 21:47:20 +02:00
|
|
|
|
2016-10-18 23:00:53 +02:00
|
|
|
menu->offset = kDebugMenuOffset;
|
|
|
|
return menu;
|
2014-05-31 09:18:50 +02:00
|
|
|
}
|
|
|
|
|
2016-09-09 22:13:20 +02:00
|
|
|
DebugState::DebugState(RWGame* game, const glm::vec3& vp, const glm::quat& vd)
|
|
|
|
: State(game), _invertedY(game->getConfig().getInputInvertY()) {
|
|
|
|
this->enterMenu(createDebugMenu());
|
2014-05-31 09:18:50 +02:00
|
|
|
|
2016-09-09 22:13:20 +02:00
|
|
|
_debugCam.position = vp;
|
|
|
|
_debugCam.rotation = vd;
|
2014-05-31 09:18:50 +02:00
|
|
|
}
|
|
|
|
|
2016-09-09 22:13:20 +02:00
|
|
|
void DebugState::enter() {
|
|
|
|
getWindow().showCursor();
|
2014-05-31 09:18:50 +02:00
|
|
|
}
|
|
|
|
|
2016-09-09 22:13:20 +02:00
|
|
|
void DebugState::exit() {
|
2015-04-04 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2016-09-09 22:13:20 +02:00
|
|
|
void DebugState::tick(float dt) {
|
|
|
|
if (_freeLook) {
|
|
|
|
_debugCam.rotation =
|
|
|
|
glm::angleAxis(_debugLook.x, glm::vec3(0.f, 0.f, 1.f)) *
|
|
|
|
glm::angleAxis(_debugLook.y, glm::vec3(0.f, 1.f, 0.f));
|
|
|
|
|
|
|
|
_debugCam.position +=
|
|
|
|
_debugCam.rotation * _movement * dt * (_sonicMode ? 500.f : 50.f);
|
|
|
|
}
|
|
|
|
}
|
2016-06-22 12:29:39 +02:00
|
|
|
|
2016-09-09 22:13:20 +02:00
|
|
|
void DebugState::draw(GameRenderer* r) {
|
|
|
|
// Draw useful information like camera position.
|
|
|
|
std::stringstream ss;
|
2017-01-18 00:57:20 +01:00
|
|
|
ss << "Camera Position: " << glm::to_string(_debugCam.position) << "\n";
|
|
|
|
auto zone = getWorld()->data->findZoneAt(_debugCam.position);
|
|
|
|
ss << (zone ? zone->name : "No Zone") << "\n";
|
2016-06-22 12:29:39 +02:00
|
|
|
|
2016-09-09 22:13:20 +02:00
|
|
|
TextRenderer::TextInfo ti;
|
|
|
|
ti.text = GameStringUtil::fromString(ss.str());
|
|
|
|
ti.font = 2;
|
|
|
|
ti.screenPosition = glm::vec2(10.f, 10.f);
|
|
|
|
ti.size = 15.f;
|
|
|
|
ti.baseColour = glm::u8vec3(255);
|
|
|
|
r->text.renderText(ti);
|
2016-06-22 12:29:39 +02:00
|
|
|
|
2016-09-09 22:13:20 +02:00
|
|
|
State::draw(r);
|
2014-05-31 09:18:50 +02:00
|
|
|
}
|
2014-06-01 14:17:35 +02:00
|
|
|
|
2016-09-09 22:13:20 +02:00
|
|
|
void DebugState::handleEvent(const SDL_Event& event) {
|
|
|
|
switch (event.type) {
|
|
|
|
case SDL_KEYDOWN:
|
|
|
|
switch (event.key.keysym.sym) {
|
|
|
|
case SDLK_ESCAPE:
|
2016-10-17 00:56:51 +02:00
|
|
|
done();
|
2016-09-09 22:13:20 +02:00
|
|
|
break;
|
|
|
|
case SDLK_w:
|
|
|
|
_movement.x = 1.f;
|
|
|
|
break;
|
|
|
|
case SDLK_s:
|
|
|
|
_movement.x = -1.f;
|
|
|
|
break;
|
|
|
|
case SDLK_a:
|
|
|
|
_movement.y = 1.f;
|
|
|
|
break;
|
|
|
|
case SDLK_d:
|
|
|
|
_movement.y = -1.f;
|
|
|
|
break;
|
|
|
|
case SDLK_f:
|
|
|
|
_freeLook = !_freeLook;
|
|
|
|
if (_freeLook)
|
|
|
|
getWindow().hideCursor();
|
|
|
|
else
|
|
|
|
getWindow().showCursor();
|
|
|
|
break;
|
|
|
|
case SDLK_p:
|
|
|
|
printCameraDetails();
|
|
|
|
break;
|
|
|
|
case SDLK_LSHIFT:
|
|
|
|
_sonicMode = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_KEYUP:
|
|
|
|
switch (event.key.keysym.sym) {
|
|
|
|
case SDLK_w:
|
|
|
|
case SDLK_s:
|
|
|
|
_movement.x = 0.f;
|
|
|
|
break;
|
|
|
|
case SDLK_a:
|
|
|
|
case SDLK_d:
|
|
|
|
_movement.y = 0.f;
|
|
|
|
break;
|
|
|
|
case SDLK_LSHIFT:
|
|
|
|
_sonicMode = false;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SDL_MOUSEMOTION:
|
|
|
|
if (game->hasFocus()) {
|
|
|
|
glm::ivec2 screenSize = getWindow().getSize();
|
|
|
|
glm::vec2 mouseMove(
|
|
|
|
event.motion.xrel / static_cast<float>(screenSize.x),
|
|
|
|
event.motion.yrel / static_cast<float>(screenSize.y));
|
|
|
|
|
|
|
|
if (!_invertedY) mouseMove.y = -mouseMove.y;
|
|
|
|
|
|
|
|
_debugLook.x -= mouseMove.x;
|
|
|
|
|
|
|
|
float qpi = glm::half_pi<float>();
|
|
|
|
_debugLook.y -= glm::clamp(mouseMove.y, -qpi, qpi);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
State::handleEvent(event);
|
2016-04-18 03:31:52 +02:00
|
|
|
}
|
|
|
|
|
2016-09-09 22:13:20 +02:00
|
|
|
void DebugState::printCameraDetails() {
|
|
|
|
std::cout << " " << _debugCam.position.x << " " << _debugCam.position.y
|
|
|
|
<< " " << _debugCam.position.z << " " << _debugCam.rotation.x
|
|
|
|
<< " " << _debugCam.rotation.y << " " << _debugCam.rotation.z
|
|
|
|
<< " " << _debugCam.rotation.w << std::endl;
|
2014-06-01 14:17:35 +02:00
|
|
|
}
|
2014-08-12 22:15:26 +02:00
|
|
|
|
2016-09-09 22:13:20 +02:00
|
|
|
void DebugState::spawnVehicle(unsigned int id) {
|
|
|
|
auto ch = game->getPlayer()->getCharacter();
|
|
|
|
if (!ch) return;
|
2016-06-17 01:24:43 +02:00
|
|
|
|
2016-09-09 22:13:20 +02:00
|
|
|
auto playerRot = ch->getRotation();
|
|
|
|
auto spawnPos = ch->getPosition();
|
|
|
|
spawnPos += playerRot * glm::vec3(0.f, 3.f, 0.f);
|
|
|
|
auto spawnRot = glm::quat(
|
|
|
|
glm::vec3(0.f, 0.f, glm::roll(playerRot) + glm::half_pi<float>()));
|
|
|
|
getWorld()->createVehicle(id, spawnPos, spawnRot);
|
2016-06-17 01:24:43 +02:00
|
|
|
}
|
|
|
|
|
2016-09-09 22:13:20 +02:00
|
|
|
void DebugState::spawnFollower(unsigned int id) {
|
|
|
|
auto ch = game->getPlayer()->getCharacter();
|
|
|
|
if (!ch) return;
|
|
|
|
|
|
|
|
glm::vec3 fwd = ch->rotation * glm::vec3(0.f, 1.f, 0.f);
|
|
|
|
|
|
|
|
glm::vec3 hit, normal;
|
|
|
|
if (game->hitWorldRay(ch->position + (fwd * 10.f), {0.f, 0.f, -2.f}, hit,
|
|
|
|
normal)) {
|
|
|
|
auto spawnPos = hit + normal;
|
|
|
|
auto follower = game->getWorld()->createPedestrian(id, spawnPos);
|
|
|
|
jumpCharacter(game, follower, spawnPos);
|
|
|
|
follower->controller->setGoal(CharacterController::FollowLeader);
|
|
|
|
follower->controller->setTargetCharacter(ch);
|
|
|
|
}
|
|
|
|
}
|
2016-06-19 14:50:06 +02:00
|
|
|
|
2016-10-19 03:22:33 +02:00
|
|
|
void DebugState::giveItem(int slot) {
|
2016-09-09 22:13:20 +02:00
|
|
|
CharacterObject* player = nullptr;
|
|
|
|
if (game->getPlayer()) {
|
|
|
|
player = game->getPlayer()->getCharacter();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (player) {
|
2016-10-19 03:22:33 +02:00
|
|
|
player->addToInventory(slot, 100);
|
2016-09-09 22:13:20 +02:00
|
|
|
}
|
2016-06-19 14:50:06 +02:00
|
|
|
}
|
|
|
|
|
Fix some warnings
openrw/rwengine/src/engine/GameData.cpp:358:26: warning: moving a temporary object prevents copy elision [-Wpessimizing-move]
textureslots[slot] = std::move(loadTextureArchive(name));
^
openrw/rwengine/src/engine/GameData.cpp:358:26: note: remove std::move call here
textureslots[slot] = std::move(loadTextureArchive(name));
^~~~~~~~~~ ~
openrw/rwengine/src/objects/CharacterObject.cpp:16:18: warning: unused variable 'enter_offset' [-Wunused-variable]
static glm::vec3 enter_offset(0.81756252f, 0.34800607f, -0.486281008f);
^
In file included from openrw/rwgame/RWGame.cpp:5:
openrw/rwgame/states/BenchmarkState.hpp:33:23: warning: 'BenchmarkState::getCamera' hides overloaded virtual function
[-Woverloaded-virtual]
const ViewCamera& getCamera();
^
openrw/rwgame/State.hpp:51:31: note: hidden overloaded virtual function 'State::getCamera' declared here: different number of
parameters (1 vs 0)
virtual const ViewCamera& getCamera(float alpha);
^
In file included from openrw/rwgame/RWGame.cpp:6:
openrw/rwgame/states/IngameState.hpp:53:18: warning: 'draw' overrides a member function but is not marked 'override'
[-Winconsistent-missing-override]
virtual void draw(GameRenderer* r);
^
openrw/rwgame/State.hpp:28:18: note: overridden virtual function is here
virtual void draw(GameRenderer* r) {
^
In file included from openrw/rwgame/RWGame.cpp:6:
openrw/rwgame/states/IngameState.hpp:60:23: warning: 'getCamera' overrides a member function but is not marked 'override'
[-Winconsistent-missing-override]
const ViewCamera& getCamera(float alpha);
^
openrw/rwgame/State.hpp:51:31: note: overridden virtual function is here
virtual const ViewCamera& getCamera(float alpha);
^
openrw/rwgame/RWGame.cpp:242:22: warning: unused variable 'vehicleModel' [-Wunused-variable]
uint16_t vehicleModel = 110; // @todo Which cars are spawned?!
^
In file included from openrw/rwengine/src/script/modules/GTA3Module.cpp:1:
In file included from openrw/rwengine/src/engine/GameState.hpp:7:
openrw/rwengine/src/engine/ScreenText.hpp:140:63: warning: suggest braces around initialization of subobject [-Wmissing-braces]
const std::array<GameString, sizeof...(args)> vals = {args...};
^~~~
{ }
openrw/rwengine/src/script/modules/GTA3ModuleImpl.inl:5669:16: note: in instantiation of function template specialization
'ScreenText::format<std::__1::basic_string<unsigned short, std::__1::char_traits<unsigned short>, std::__1::allocator<unsigned short> > >'
requested here
ScreenText::format(
^
In file included from openrw/rwengine/src/script/modules/GTA3Module.cpp:1:
In file included from openrw/rwengine/src/engine/GameState.hpp:7:
openrw/rwengine/src/engine/ScreenText.hpp:140:63: warning: suggest braces around initialization of subobject [-Wmissing-braces]
const std::array<GameString, sizeof...(args)> vals = {args...};
^~~~
{ }
openrw/rwengine/src/script/modules/GTA3ModuleImpl.inl:10214:18: note: in instantiation of function template specialization
'ScreenText::format<std::__1::basic_string<unsigned short, std::__1::char_traits<unsigned short>, std::__1::allocator<unsigned short> >,
std::__1::basic_string<unsigned short, std::__1::char_traits<unsigned short>, std::__1::allocator<unsigned short> > >' requested here
ScreenText::format(script::gxt(args, gxtEntry),
^
openrw/rwgame/State.cpp:40:42: warning: unused parameter 'alpha' [-Wunused-parameter]
const ViewCamera& State::getCamera(float alpha) {
^
openrw/rwengine/src/render/ObjectRenderer.cpp:20:17: warning: unused variable 'kWorldDrawDistanceFactor'
[-Wunused-const-variable]
constexpr float kWorldDrawDistanceFactor = kDrawDistanceFactor;
^
2017-09-21 16:45:44 +02:00
|
|
|
const ViewCamera& DebugState::getCamera(float) {
|
2016-09-09 22:13:20 +02:00
|
|
|
return _debugCam;
|
2014-08-12 22:15:26 +02:00
|
|
|
}
|