1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
/* bzflag
* Copyright (c) 1993-2025 Tim Riker
*
* This package is free software; you can redistribute it and/or
* modify it under the terms of the license found in the file
* named COPYING that should have accompanied this file.
*
* THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
#ifndef _TRANSFORM_H_
#define _TRANSFORM_H_
//1st
#include "common.h"
// System headers
#include <string>
#include <vector>
#include <iostream>
enum TransformType
{
ShiftTransform = 0,
ScaleTransform = 1,
ShearTransform = 2,
SpinTransform = 3,
IndexTransform = 4,
LastTransform
};
typedef struct
{
TransformType type;
int index;
float data[4];
} TransformData;
class MeshTransform
{
public:
MeshTransform();
MeshTransform(const MeshTransform&);
~MeshTransform();
MeshTransform& operator=(const MeshTransform& transform);
void append(const MeshTransform& transform);
void prepend(const MeshTransform& transform);
bool setName(const std::string& name);
void addShift(const float shift[3]);
void addScale(const float scale[3]);
void addShear(const float shear[3]);
void addSpin(const float degrees, const float normal[3]);
void addReference(int transform);
bool isEmpty() const
{
return (transforms.size() <= 0);
}
bool isValid();
void finalize();
const std::string& getName() const;
int packSize() const;
void* pack(void*) const;
const void* unpack(const void*);
void print(std::ostream& out, const std::string& indent) const;
void printTransforms(std::ostream& out, const std::string& indent) const;
private:
std::string name;
std::vector<TransformData> transforms;
public:
class Tool
{
public:
Tool(const MeshTransform& transform);
~Tool();
bool isInverted() const;
bool isSkewed() const; // scaled or sheared
void modifyVertex(float vertex[3]) const;
void modifyNormal(float normal[3]) const;
void modifyOldStyle(float pos[3], float size[3],
float& angle, bool& flipz) const;
const float* getMatrix() const;
private:
void processTransforms(const std::vector<TransformData>& tforms);
bool empty;
bool inverted;
bool skewed;
float vertexMatrix[4][4];
float normalMatrix[3][3];
};
friend class MeshTransform::Tool;
};
inline bool MeshTransform::Tool::isInverted() const
{
return inverted;
}
inline bool MeshTransform::Tool::isSkewed() const
{
return skewed;
}
inline const float* MeshTransform::Tool::getMatrix() const
{
return (const float*)vertexMatrix;
}
class MeshTransformManager
{
public:
MeshTransformManager();
~MeshTransformManager();
void update();
void clear();
int addTransform(MeshTransform* driver);
int findTransform(const std::string& name) const;
const MeshTransform* getTransform(int id) const;
int packSize() const;
void* pack(void*) const;
const void* unpack(const void*);
void print(std::ostream& out, const std::string& indent) const;
private:
std::vector<MeshTransform*> transforms;
};
inline const MeshTransform* MeshTransformManager::getTransform(int id) const
{
if ((id >= 0) && (id < (int)transforms.size()))
return transforms[id];
else
return NULL;
}
extern MeshTransformManager TRANSFORMMGR;
#endif //_TRANSFORM_H_
// Local Variables: ***
// mode: C++ ***
// tab-width: 4 ***
// c-basic-offset: 4 ***
// indent-tabs-mode: nil ***
// End: ***
// ex: shiftwidth=4 tabstop=4
|