Initial Mangos Three Commit

This commit is contained in:
Antz 2020-02-16 01:55:18 +00:00
parent bb91aa5933
commit 7665a09232
No known key found for this signature in database
GPG key ID: 0DF907270598C85F
2444 changed files with 625144 additions and 0 deletions

View file

@ -0,0 +1,144 @@
/**
* MaNGOS is a full featured server for World of Warcraft, supporting
* the following clients: 1.12.x, 2.4.3, 3.3.5a, 4.3.4a and 5.4.8
*
* Copyright (C) 2005-2020 MaNGOS <https://getmangos.eu>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* World of Warcraft, and all World of Warcraft or Warcraft art, images,
* and lore are copyrighted by Blizzard Entertainment, Inc.
*/
#ifndef MODEL_H
#define MODEL_H
#include <vector>
#include <ml/loadlib.h>
#include "vec3d.h"
#include "modelheaders.h"
#include "wmo.h"
/**
* @brief
*
*/
class Model
{
public:
ModelHeaderClassicTBC headerClassicTBC; /**< TODO */
ModelHeaderOthers headerOthers; /**< TODO */
ModelBoundingVertex* boundingVertices; /**< TODO */
Vec3D* vertices; /**< TODO */
uint16* indices; /**< TODO */
size_t nIndices; /**< TODO */
/**
* @brief
*
* @param failedPaths
* @return bool
*/
bool open(std::set<std::string>& failedPaths, int iCoreNumber);
/**
* @brief
*
* @param outfilename
* @return bool
*/
bool ConvertToVMAPModel(std::string& outfilename, int iCoreNumber, const void *szRawVMAPMagic);
bool ok; /**< TODO */
/**
* @brief
*
* @param filename
*/
Model(std::string& filename);
/**
* @brief
*
*/
~Model() {_unload();}
private:
/**
* @brief
*
*/
void _unload()
{
delete[] vertices;
delete[] indices;
vertices = NULL;
indices = NULL;
}
std::string filename; /**< TODO */
};
/**
* @brief
*
*/
class ModelInstance
{
public:
Model* model; /**< TODO */
uint32 id; /**< TODO */
Vec3D pos, rot; /**< TODO */
unsigned int d1;
float w, sc;
unsigned int scaleZeroOnly;
//unsigned int scale; // This line introduced a regression bug in Mangos Zero, is Fine for other cores.
uint16 scaleOthers;
/**
* @brief
*
*/
ModelInstance() {}
/**
* @brief
*
* @param f
* @param ModelInstName
* @param mapID
* @param tileX
* @param tileY
* @param pDirfile
*/
ModelInstance(MPQFile& f, std::string& ModelInstName, uint32 mapID, uint32 tileX, uint32 tileY, FILE* pDirfile, int iCoreNumber);
};
/**
* @brief
*
* @param origPath original path of the model, cleaned with fixnamen and fixname2
* @param fixedName will store the translated name (if changed)
* @param failedPaths Set to collect errors
* @return bool
*/
bool ExtractSingleModel(std::string& origPath, std::string& fixedName, std::set<std::string>& failedPaths, int iCoreNumber, const void *szRawVMAPMagic);
/**
* @brief
*
*/
void ExtractGameobjectModels(int iCoreNumber, const void *szRawVMAPMagic);
#endif