| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- /*
- -----------------------------------------------------------------------------
- The MIT License (MIT)
- Copyright (c) 2013-08-11 Tobias Peters <tobias.peters@kreativeffekt.at>
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- THE SOFTWARE.
- -----------------------------------------------------------------------------
- */
- #ifndef __QGearsPFile_H__
- #define __QGearsPFile_H__
- #include <OgreAxisAlignedBox.h>
- #include <OgreColourValue.h>
- #include <OgreMesh.h>
- #include <OgreResource.h>
- #include <Ogre.h>
- #include "common/TypeDefine.h"
- #include "common/QGearsManualObject.h"
- #include "data/QGearsRSDFile.h"
- namespace QGears
- {
- class PFile : public Ogre::Resource
- {
- public:
- PFile( Ogre::ResourceManager *creator, const String &name
- ,Ogre::ResourceHandle handle, const String &group
- ,bool isManual = false, Ogre::ManualResourceLoader *loader = NULL );
- virtual ~PFile();
- virtual bool isValid( void );
- virtual bool isPolygonDefinitionListValid( void );
- virtual void addGroups( Ogre::Mesh *mesh, const String &bone_name
- ,const RSDFilePtr &rsd ) const;
- struct Edge
- {
- uint16 index[2];
- };
- struct PolygonDefinition
- {
- uint16 unknown_00;
- uint16 vertex[3];
- uint16 normal[3];
- uint16 edge[3];
- uint16 unknown_14;
- uint16 unknown_16;
- };
- struct MaterialInformation
- {
- uint8 unknown[100];
- };
- struct Group
- {
- uint32 primitive_type;
- uint32 polygon_start_index;
- uint32 num_polygons;
- uint32 vertex_start_index;
- uint32 num_vertices;
- uint32 edge_start_index;
- uint32 num_edges;
- uint32 unknown_1C;
- uint32 unknown_20;
- uint32 unknown_24;
- uint32 unknown_28;
- uint32 texture_coordinate_start_index;
- uint32 has_texture;
- uint32 texture_index;
- };
- struct BBoxEntry
- {
- uint32 unknown;
- Ogre::AxisAlignedBox bbox;
- };
- typedef Ogre::ColourValue Colour;
- typedef std::vector<Ogre::Vector3> VertexList;
- typedef std::vector<Ogre::Vector3> NormalList;
- typedef std::vector<Ogre::Vector3> Unkown1List;
- typedef std::vector<Ogre::Vector2> TextureCoordinateList;
- typedef std::vector<Colour> VertexColorList;
- typedef std::vector<Colour> PolygonColorList;
- typedef std::vector<Edge> EdgeList;
- typedef std::vector<PolygonDefinition> PolygonDefinitionList;
- typedef std::vector<Group> GroupList;
- typedef std::vector<BBoxEntry> BBoxList;
- virtual VertexList& getVertices() { return m_vertices; }
- virtual NormalList& getNormals() { return m_normals; }
- virtual Unkown1List& getUnknown1() { return m_unknown1; }
- virtual TextureCoordinateList& getTextureCoordinates() { return m_texture_coordinates; }
- virtual VertexColorList& getVertexColors() { return m_vertex_colors; }
- virtual PolygonColorList& getPolygonColors() { return m_polygon_colors; }
- virtual EdgeList& getEdges() { return m_edges; }
- virtual PolygonDefinitionList& getPolygonDefinitions() { return m_polygon_definitions; }
- virtual GroupList& getGroups() { return m_groups; }
- virtual BBoxList& getBBoxes() { return m_bboxes; }
- static const String RESOURCE_TYPE;
- protected:
- virtual void loadImpl();
- virtual void unloadImpl();
- virtual size_t calculateSize() const;
- virtual void addGroup( const Group &group, ManualObject &mo
- ,const String &sub_name
- ,const String &material_base_name
- ,const Ogre::Bone *bone ) const;
- virtual Ogre::Vector3 getPosition( const Ogre::Bone *bone ) const;
- static const Ogre::Quaternion STATIC_ROTATION;
- static Ogre::Quaternion createStaticRotation();
- private:
- VertexList m_vertices;
- NormalList m_normals;
- Unkown1List m_unknown1;
- TextureCoordinateList m_texture_coordinates;
- VertexColorList m_vertex_colors;
- PolygonColorList m_polygon_colors;
- EdgeList m_edges;
- PolygonDefinitionList m_polygon_definitions;
- GroupList m_groups;
- BBoxList m_bboxes;
- };
- typedef Ogre::SharedPtr<PFile> PFilePtr;
- }
- #endif // __QGearsPFile_H__
|