2002-10-12 11:37:38 +00:00
|
|
|
/**
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-04-16 22:40:48 +00:00
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
2002-10-12 11:37:38 +00:00
|
|
|
*
|
|
|
|
* 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
|
2008-04-16 22:40:48 +00:00
|
|
|
* of the License, or (at your option) any later version.
|
2002-10-12 11:37:38 +00:00
|
|
|
*
|
|
|
|
* 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,
|
2010-02-12 13:34:04 +00:00
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2002-10-12 11:37:38 +00:00
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* The Original Code is: all of this file.
|
|
|
|
*
|
|
|
|
* Contributor(s): none yet.
|
|
|
|
*
|
2008-04-16 22:40:48 +00:00
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
2002-10-12 11:37:38 +00:00
|
|
|
*/
|
|
|
|
#ifndef __RAS_TEXVERT
|
|
|
|
#define __RAS_TEXVERT
|
|
|
|
|
|
|
|
|
|
|
|
#include "MT_Point3.h"
|
|
|
|
#include "MT_Point2.h"
|
|
|
|
#include "MT_Transform.h"
|
|
|
|
|
2009-08-18 15:37:31 +00:00
|
|
|
#ifdef WITH_CXX_GUARDEDALLOC
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
#endif
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
static MT_Point3 g_pt3;
|
|
|
|
static MT_Point2 g_pt2;
|
|
|
|
|
|
|
|
class RAS_TexVert
|
|
|
|
{
|
|
|
|
|
2004-07-17 05:23:17 +00:00
|
|
|
float m_localxyz[3]; // 3*4 = 12
|
2006-01-06 03:46:54 +00:00
|
|
|
float m_uv1[2]; // 2*4 = 8
|
2007-01-07 04:39:39 +00:00
|
|
|
float m_uv2[2]; // 2*4 = 8
|
2004-07-17 05:23:17 +00:00
|
|
|
unsigned int m_rgba; // 4
|
2008-09-25 03:02:30 +00:00
|
|
|
float m_tangent[4]; // 4*4 = 16
|
|
|
|
float m_normal[3]; // 3*4 = 12
|
2006-01-06 03:46:54 +00:00
|
|
|
short m_flag; // 2
|
2008-09-25 03:02:30 +00:00
|
|
|
short m_softBodyIndex; //2
|
2006-01-06 03:46:54 +00:00
|
|
|
unsigned int m_unit; // 4
|
2008-09-25 03:02:30 +00:00
|
|
|
unsigned int m_origindex; // 4
|
2006-01-06 03:46:54 +00:00
|
|
|
//---------
|
2008-09-25 03:02:30 +00:00
|
|
|
// 56+6+8+2=72
|
2008-07-10 12:47:20 +00:00
|
|
|
// 32 bytes total size, fits nice = 56 = not fit nice.
|
2008-09-25 03:02:30 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
public:
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
enum {
|
|
|
|
FLAT = 1,
|
|
|
|
SECOND_UV = 2,
|
|
|
|
MAX_UNIT = 8
|
|
|
|
};
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
short getFlag() const;
|
2006-01-06 03:46:54 +00:00
|
|
|
unsigned int getUnit() const;
|
2004-07-17 05:23:17 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
RAS_TexVert()// :m_xyz(0,0,0),m_uv(0,0),m_rgba(0)
|
|
|
|
{}
|
|
|
|
RAS_TexVert(const MT_Point3& xyz,
|
|
|
|
const MT_Point2& uv,
|
2007-01-07 04:39:39 +00:00
|
|
|
const MT_Point2& uv2,
|
2006-02-13 05:45:32 +00:00
|
|
|
const MT_Vector4& tangent,
|
2002-10-12 11:37:38 +00:00
|
|
|
const unsigned int rgba,
|
2004-06-30 13:41:19 +00:00
|
|
|
const MT_Vector3& normal,
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
const bool flat,
|
2008-07-10 12:47:20 +00:00
|
|
|
const unsigned int origindex);
|
2002-10-12 11:37:38 +00:00
|
|
|
~RAS_TexVert() {};
|
|
|
|
|
2004-03-22 22:02:18 +00:00
|
|
|
const float* getUV1 () const {
|
|
|
|
return m_uv1;
|
|
|
|
};
|
2006-01-06 03:46:54 +00:00
|
|
|
|
|
|
|
const float* getUV2 () const {
|
|
|
|
return m_uv2;
|
|
|
|
};
|
|
|
|
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
const float* getXYZ() const {
|
2004-03-22 22:02:18 +00:00
|
|
|
return m_localxyz;
|
|
|
|
};
|
|
|
|
|
2004-06-30 13:41:19 +00:00
|
|
|
const float* getNormal() const {
|
2004-03-22 22:02:18 +00:00
|
|
|
return m_normal;
|
|
|
|
}
|
|
|
|
|
2008-09-25 03:02:30 +00:00
|
|
|
short int getSoftBodyIndex() const
|
|
|
|
{
|
|
|
|
return m_softBodyIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setSoftBodyIndex(short int sbIndex)
|
|
|
|
{
|
|
|
|
m_softBodyIndex = sbIndex;
|
|
|
|
}
|
|
|
|
|
2006-02-13 05:45:32 +00:00
|
|
|
const float* getTangent() const {
|
|
|
|
return m_tangent;
|
|
|
|
}
|
|
|
|
|
2004-07-17 05:23:17 +00:00
|
|
|
const unsigned char* getRGBA() const {
|
|
|
|
return (unsigned char *) &m_rgba;
|
2004-03-22 22:02:18 +00:00
|
|
|
}
|
2008-07-10 12:47:20 +00:00
|
|
|
|
2009-02-25 03:26:02 +00:00
|
|
|
unsigned int getOrigIndex() const {
|
2008-07-10 12:47:20 +00:00
|
|
|
return m_origindex;
|
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
void SetXYZ(const MT_Point3& xyz);
|
2009-02-25 06:43:03 +00:00
|
|
|
void SetXYZ(const float *xyz);
|
2002-10-12 11:37:38 +00:00
|
|
|
void SetUV(const MT_Point2& uv);
|
2006-01-06 03:46:54 +00:00
|
|
|
void SetUV2(const MT_Point2& uv);
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
void SetRGBA(const unsigned int rgba);
|
|
|
|
void SetNormal(const MT_Vector3& normal);
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
void SetTangent(const MT_Vector3& tangent);
|
2002-10-12 11:37:38 +00:00
|
|
|
void SetFlag(const short flag);
|
2006-01-06 03:46:54 +00:00
|
|
|
void SetUnit(const unsigned u);
|
2004-03-22 22:02:18 +00:00
|
|
|
|
2004-05-30 11:09:46 +00:00
|
|
|
void SetRGBA(const MT_Vector4& rgba);
|
2004-05-16 12:55:37 +00:00
|
|
|
const MT_Point3& xyz();
|
|
|
|
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
void Transform(const class MT_Matrix4x4& mat,
|
|
|
|
const class MT_Matrix4x4& nmat);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
Merge of first part of changes from the apricot branch, especially
the features that are needed to run the game. Compile tested with
scons, make, but not cmake, that seems to have an issue not related
to these changes. The changes include:
* GLSL support in the viewport and game engine, enable in the game
menu in textured draw mode.
* Synced and merged part of the duplicated blender and gameengine/
gameplayer drawing code.
* Further refactoring of game engine drawing code, especially mesh
storage changed a lot.
* Optimizations in game engine armatures to avoid recomputations.
* A python function to get the framerate estimate in game.
* An option take object color into account in materials.
* An option to restrict shadow casters to a lamp's layers.
* Increase from 10 to 18 texture slots for materials, lamps, word.
An extra texture slot shows up once the last slot is used.
* Memory limit for undo, not enabled by default yet because it
needs the .B.blend to be changed.
* Multiple undo for image painting.
* An offset for dupligroups, so not all objects in a group have to
be at the origin.
2008-09-04 20:51:28 +00:00
|
|
|
// compare two vertices, to test if they can be shared, used for
|
|
|
|
// splitting up based on uv's, colors, etc
|
|
|
|
bool closeTo(const RAS_TexVert* other);
|
2009-08-18 15:37:31 +00:00
|
|
|
|
|
|
|
#ifdef WITH_CXX_GUARDEDALLOC
|
|
|
|
public:
|
2010-06-06 01:15:44 +00:00
|
|
|
void *operator new(size_t num_bytes) { return MEM_mallocN(num_bytes, "GE:RAS_TexVert"); }
|
2009-08-18 15:37:31 +00:00
|
|
|
void operator delete( void *mem ) { MEM_freeN(mem); }
|
|
|
|
#endif
|
2002-10-12 11:37:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //__RAS_TEXVERT
|
2002-10-30 02:07:20 +00:00
|
|
|
|