1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-20 01:11:46 +02:00
openrw/framework2/GTAEngine.cpp

202 lines
5.1 KiB
C++
Raw Normal View History

#include <renderwure/engine/GTAEngine.hpp>
#include <renderwure/loaders/LoaderIPL.hpp>
2013-07-02 14:49:20 +02:00
#include <renderwure/loaders/LoaderIDE.hpp>
2013-07-02 08:06:03 +02:00
GTAEngine::GTAEngine(const std::string& path)
2013-07-04 01:35:03 +02:00
: itemCount(0), gameData(path), gameTime(0.f), randomEngine(rand())
2013-07-02 08:06:03 +02:00
{
gameData.engine = this;
2013-07-02 08:06:03 +02:00
}
bool GTAEngine::load()
{
gameData.load();
2013-07-02 14:49:20 +02:00
// Loade all of the IDEs.
for(std::map<std::string, std::string>::iterator it = gameData.ideLocations.begin();
it != gameData.ideLocations.end();
++it) {
defineItems(it->second);
}
// Load the .zon IPLs since we want to have the zones loaded
for(std::map<std::string, std::string>::iterator it = gameData.iplLocations.begin();
it != gameData.iplLocations.end();
++it) {
loadZone(it->second);
placeItems(it->second);
}
2013-07-02 08:06:03 +02:00
return true;
}
2013-07-02 12:48:01 +02:00
void GTAEngine::logInfo(const std::string& info)
{
log.push_back({LogEntry::Info, gameTime, info});
2013-07-02 12:48:01 +02:00
}
void GTAEngine::logError(const std::string& error)
{
log.push_back({LogEntry::Error, gameTime, error});
}
void GTAEngine::logWarning(const std::string& warning)
{
log.push_back({LogEntry::Warning, gameTime, warning});
2013-07-02 12:48:01 +02:00
}
2013-07-02 14:49:20 +02:00
bool GTAEngine::defineItems(const std::string& name)
{
auto i = gameData.ideLocations.find(name);
std::string path = name;
if( i != gameData.ideLocations.end()) {
path = i->second;
}
else {
std::cout << "IDE not pre-listed" << std::endl;
}
LoaderIDE idel;
if(idel.load(path)) {
for( size_t o = 0; o < idel.OBJSs.size(); ++o) {
objectTypes.insert({
idel.OBJSs[o].ID,
std::shared_ptr<LoaderIDE::OBJS_t>(new LoaderIDE::OBJS_t(idel.OBJSs[o]))
});
}
for( size_t v = 0; v < idel.CARSs.size(); ++v) {
std::cout << "Vehicle ID " << idel.CARSs[v].ID << ": " << idel.CARSs[v].gameName << std::endl;
vehicleTypes.insert({
idel.CARSs[v].ID,
std::shared_ptr<LoaderIDE::CARS_t>(new LoaderIDE::CARS_t(idel.CARSs[v]))
});
}
2013-07-02 14:49:20 +02:00
}
else {
std::cerr << "Failed to load IDE " << path << std::endl;
}
return false;
}
bool GTAEngine::placeItems(const std::string& name)
2013-07-02 08:06:03 +02:00
{
auto i = gameData.iplLocations.find(name);
std::string path = name;
if(i != gameData.iplLocations.end())
{
path = i->second;
}
else
{
std::cout << "IPL not pre-listed" << std::endl;
}
LoaderIPL ipll;
if(ipll.load(path))
{
2013-07-02 14:49:20 +02:00
// Find the object.
for( size_t i = 0; i < ipll.m_instances.size(); ++i) {
LoaderIPLInstance& inst = ipll.m_instances[i];
auto oi = objectTypes.find(inst.id);
if( oi != objectTypes.end()) {
2013-07-02 16:33:15 +02:00
// Make sure the DFF and TXD are loaded
if(! oi->second->modelName.empty()) {
gameData.loadDFF(oi->second->modelName + ".dff");
}
if(! oi->second->textureName.empty()) {
gameData.loadTXD(oi->second->textureName + ".txd");
}
2013-07-02 14:49:20 +02:00
objectInstances.push_back({ inst, oi->second });
}
else {
std::cerr << "No object for instance " << inst.id << " (" << path << ")" << std::endl;
}
}
2013-07-02 08:06:03 +02:00
itemCentroid += ipll.centroid;
2013-07-02 14:49:20 +02:00
itemCount += ipll.m_instances.size();
2013-07-02 08:06:03 +02:00
return true;
}
else
{
std::cerr << "Failed to load IPL: " << path << std::endl;
return false;
}
return false;
}
bool GTAEngine::loadZone(const std::string& path)
{
LoaderIPL ipll;
if( ipll.load(path)) {
if( ipll.zones.size() > 0) {
zones.insert(zones.begin(), ipll.zones.begin(), ipll.zones.end());
std::cout << "Loaded " << ipll.zones.size() << " zones" << std::endl;
return true;
}
}
else {
std::cerr << "Failed to load IPL " << path << std::endl;
}
return false;
}
void GTAEngine::createVehicle(const uint16_t id, const glm::vec3& pos)
{
auto vti = vehicleTypes.find(id);
if(vti != vehicleTypes.end()) {
std::cout << "Creating Vehicle ID " << id << " (" << vti->second->gameName << ")" << std::endl;
if(! vti->second->modelName.empty()) {
gameData.loadDFF(vti->second->modelName + ".dff");
}
if(! vti->second->textureName.empty()) {
gameData.loadTXD(vti->second->textureName + ".txd");
}
glm::vec3 prim = glm::vec3(1.f), sec = glm::vec3(0.5f);
auto palit = gameData.vehiclePalettes.find(vti->second->modelName); // modelname is conveniently lowercase (usually)
if(palit != gameData.vehiclePalettes.end() && palit->second.size() > 0 ) {
std::uniform_int_distribution<int> uniform(0, palit->second.size()-1);
int set = uniform(randomEngine);
prim = gameData.vehicleColours[palit->second[set].first];
sec = gameData.vehicleColours[palit->second[set].second];
}
else {
logWarning("No colour palette for vehicle " + vti->second->modelName);
}
2013-07-04 03:40:47 +02:00
auto wi = objectTypes.find(vti->second->wheelModelID);
if( wi != objectTypes.end()) {
if(! wi->second->textureName.empty()) {
gameData.loadTXD(wi->second->textureName + ".txd");
}
}
std::unique_ptr<Model> &model = gameData.models[vti->second->modelName];
if(model) {
if( vti->second->wheelPositions.size() == 0 ) {
for( size_t f = 0; f < model->frames.size(); ++f) {
if( model->frameNames.size() > f) {
std::string& name = model->frameNames[f];
if( name.substr(0, 5) == "wheel" ) {
vti->second->wheelPositions.push_back(model->frames[f].position);
}
}
}
}
}
vehicleInstances.push_back({ pos, vti->second, prim, sec });
}
}