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,
|
|
|
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
#pragma warning (disable : 4786)
|
|
|
|
#endif //WIN32
|
|
|
|
|
2005-03-22 13:34:31 +00:00
|
|
|
#include "BL_SkinDeformer.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "GEN_Map.h"
|
|
|
|
#include "STR_HashedString.h"
|
|
|
|
#include "RAS_IPolygonMaterial.h"
|
|
|
|
#include "BL_SkinMeshObject.h"
|
|
|
|
|
|
|
|
//#include "BL_ArmatureController.h"
|
|
|
|
#include "DNA_armature_types.h"
|
|
|
|
#include "DNA_action_types.h"
|
|
|
|
#include "DNA_mesh_types.h"
|
2004-03-20 22:55:42 +00:00
|
|
|
#include "DNA_meshdata_types.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "BKE_armature.h"
|
|
|
|
#include "BKE_action.h"
|
|
|
|
#include "MT_Point3.h"
|
|
|
|
|
2006-01-06 03:46:54 +00:00
|
|
|
extern "C"{
|
|
|
|
#include "BKE_lattice.h"
|
|
|
|
}
|
|
|
|
#include "BKE_utildefines.h"
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "BLI_blenlib.h"
|
|
|
|
#include "BLI_arithb.h"
|
|
|
|
|
|
|
|
#define __NLA_DEFNORMALS
|
|
|
|
//#undef __NLA_DEFNORMALS
|
|
|
|
|
2008-07-10 12:47:20 +00:00
|
|
|
BL_SkinDeformer::BL_SkinDeformer(BL_DeformableGameObject *gameobj,
|
|
|
|
struct Object *bmeshobj,
|
2008-06-18 06:46:49 +00:00
|
|
|
class BL_SkinMeshObject *mesh,
|
|
|
|
BL_ArmatureObject* arma)
|
|
|
|
: //
|
2008-07-10 12:47:20 +00:00
|
|
|
BL_MeshDeformer(gameobj, bmeshobj, mesh),
|
2008-06-18 06:46:49 +00:00
|
|
|
m_armobj(arma),
|
|
|
|
m_lastArmaUpdate(-1),
|
|
|
|
m_defbase(&bmeshobj->defbase),
|
2008-07-16 21:24:54 +00:00
|
|
|
m_releaseobject(false),
|
|
|
|
m_poseApplied(false)
|
2008-06-18 06:46:49 +00:00
|
|
|
{
|
|
|
|
Mat4CpyMat4(m_obmat, bmeshobj->obmat);
|
|
|
|
};
|
|
|
|
|
2008-04-05 13:33:08 +00:00
|
|
|
BL_SkinDeformer::BL_SkinDeformer(
|
2008-07-10 12:47:20 +00:00
|
|
|
BL_DeformableGameObject *gameobj,
|
2008-04-05 13:33:08 +00:00
|
|
|
struct Object *bmeshobj_old, // Blender object that owns the new mesh
|
|
|
|
struct Object *bmeshobj_new, // Blender object that owns the original mesh
|
|
|
|
class BL_SkinMeshObject *mesh,
|
|
|
|
bool release_object,
|
|
|
|
BL_ArmatureObject* arma) :
|
2008-07-10 12:47:20 +00:00
|
|
|
BL_MeshDeformer(gameobj, bmeshobj_old, mesh),
|
2008-04-05 13:33:08 +00:00
|
|
|
m_armobj(arma),
|
2008-06-18 06:46:49 +00:00
|
|
|
m_lastArmaUpdate(-1),
|
2008-04-05 13:33:08 +00:00
|
|
|
m_defbase(&bmeshobj_old->defbase),
|
|
|
|
m_releaseobject(release_object)
|
|
|
|
{
|
|
|
|
// this is needed to ensure correct deformation of mesh:
|
|
|
|
// the deformation is done with Blender's armature_deform_verts() function
|
|
|
|
// that takes an object as parameter and not a mesh. The object matrice is used
|
2008-06-18 06:46:49 +00:00
|
|
|
// in the calculation, so we must use the matrix of the original object to
|
|
|
|
// simulate a pure replacement of the mesh.
|
|
|
|
Mat4CpyMat4(m_obmat, bmeshobj_new->obmat);
|
2008-04-05 13:33:08 +00:00
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
BL_SkinDeformer::~BL_SkinDeformer()
|
|
|
|
{
|
2006-01-06 03:46:54 +00:00
|
|
|
if(m_releaseobject && m_armobj)
|
|
|
|
m_armobj->Release();
|
2008-04-05 13:33:08 +00:00
|
|
|
}
|
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
|
|
|
void BL_SkinDeformer::Relink(GEN_Map<class GEN_HashedPtr, void*>*map)
|
|
|
|
{
|
|
|
|
if (m_armobj) {
|
|
|
|
void **h_obj = (*map)[m_armobj];
|
|
|
|
|
|
|
|
if (h_obj)
|
|
|
|
SetArmature( (BL_ArmatureObject*)(*h_obj) );
|
|
|
|
else
|
|
|
|
m_armobj=NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
BL_MeshDeformer::Relink(map);
|
|
|
|
}
|
|
|
|
|
2008-07-16 21:24:54 +00:00
|
|
|
bool BL_SkinDeformer::Apply(RAS_IPolyMaterial *mat)
|
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
|
|
|
RAS_MeshSlot::iterator it;
|
|
|
|
RAS_MeshMaterial *mmat;
|
|
|
|
RAS_MeshSlot *slot;
|
|
|
|
size_t i;
|
2008-07-10 12:47:20 +00:00
|
|
|
|
2008-07-16 21:24:54 +00:00
|
|
|
// update the vertex in m_transverts
|
|
|
|
Update();
|
2008-07-10 12:47:20 +00:00
|
|
|
|
2008-07-16 21:24:54 +00:00
|
|
|
// The vertex cache can only be updated for this deformer:
|
|
|
|
// Duplicated objects with more than one ploymaterial (=multiple mesh slot per object)
|
|
|
|
// share the same mesh (=the same cache). As the rendering is done per polymaterial
|
|
|
|
// cycling through the objects, the entire mesh cache cannot be updated in one shot.
|
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
|
|
|
mmat = m_pMeshObject->GetMeshMaterial(mat);
|
|
|
|
if(!mmat->m_slots[(void*)m_gameobj])
|
|
|
|
return true;
|
2008-07-10 12:47:20 +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
|
|
|
slot = *mmat->m_slots[(void*)m_gameobj];
|
2008-07-10 12:47:20 +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
|
|
|
// for each array
|
|
|
|
for(slot->begin(it); !slot->end(it); slot->next(it)) {
|
|
|
|
// for each vertex
|
2008-07-16 21:24:54 +00:00
|
|
|
// copy the untransformed data from the original mvert
|
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
|
|
|
for(i=it.startvertex; i<it.endvertex; i++) {
|
|
|
|
RAS_TexVert& v = it.vertex[i];
|
2008-07-16 21:24:54 +00:00
|
|
|
v.SetXYZ(m_transverts[v.getOrigIndex()]);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
}
|
Merge of apricot branch game engine changes into trunk, excluding GLSL.
GLEW
====
Added the GLEW opengl extension library into extern/, always compiled
into Blender now. This is much nicer than doing this kind of extension
management manually, and will be used in the game engine, for GLSL, and
other opengl extensions.
* According to the GLEW website it works on Windows, Linux, Mac OS X,
FreeBSD, Irix, and Solaris. There might still be platform specific
issues due to this commit, so let me know and I'll look into it.
* This means also that all extensions will now always be compiled in,
regardless of the glext.h on the platform where compilation happens.
Game Engine
===========
Refactoring of the use of opengl extensions and other drawing code
in the game engine, and cleaning up some hacks related to GLSL
integration. These changes will be merged into trunk too after this.
The game engine graphics demos & apricot level survived my tests,
but this could use some good testing of course.
For users: please test with the options "Generate Display Lists" and
"Vertex Arrays" enabled, these should be the fastest and are supposed
to be "unreliable", but if that's the case that's probably due to bugs
that can be fixed.
* The game engine now also uses GLEW for extensions, replacing the
custom opengl extensions code that was there. Removes a lot of
#ifdef's, but the runtime checks stay of course.
* Removed the WITHOUT_GLEXT environment variable. This was added to
work around a specific bug and only disabled multitexturing anyway.
It might also have caused a slowdown since it was retrieving the
environment variable for every vertex in immediate mode (bug #13680).
* Refactored the code to allow drawing skinned meshes with vertex
arrays too, removing some specific immediate mode drawing functions
for this that only did extra normal calculation. Now it always splits
vertices of flat faces instead.
* Refactored normal recalculation with some minor optimizations,
required for the above change.
* Removed some outdated code behind the __NLA_OLDDEFORM #ifdef.
* Fixed various bugs in setting of multitexture coordinates and vertex
attributes for vertex arrays. These were not being enabled/disabled
correct according to the opengl spec, leading to crashes. Also tangent
attributes used an immediate mode call for vertex arrays, which can't
work.
* Fixed use of uninitialized variable in RAS_TexVert.
* Exporting skinned meshes was doing O(n^2) lookups for vertices and
deform weights, now uses same trick as regular meshes.
2008-06-17 10:27:34 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-09-26 02:27:59 +00:00
|
|
|
RAS_Deformer *BL_SkinDeformer::GetReplica(class KX_GameObject* replica)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
BL_SkinDeformer *result;
|
|
|
|
|
|
|
|
result = new BL_SkinDeformer(*this);
|
|
|
|
result->ProcessReplica();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BL_SkinDeformer::ProcessReplica()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-12-31 07:20:08 +00:00
|
|
|
//void where_is_pose (Object *ob);
|
|
|
|
//void armature_deform_verts(Object *armOb, Object *target, float (*vertexCos)[3], int numVerts, int deformflag);
|
2008-06-18 06:46:49 +00:00
|
|
|
bool BL_SkinDeformer::Update(void)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
/* See if the armature has been updated for this frame */
|
2008-06-24 22:19:00 +00:00
|
|
|
if (PoseUpdated()){
|
2008-06-18 06:46:49 +00:00
|
|
|
float obmat[4][4]; // the original object matrice
|
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
|
|
|
|
2005-11-29 12:45:18 +00:00
|
|
|
/* XXX note: where_is_pose() (from BKE_armature.h) calculates all matrices needed to start deforming */
|
|
|
|
/* but it requires the blender object pointer... */
|
2006-01-06 03:46:54 +00:00
|
|
|
Object* par_arma = m_armobj->GetArmatureObject();
|
2006-04-28 17:35:03 +00:00
|
|
|
|
2006-01-06 03:46:54 +00:00
|
|
|
/* store verts locally */
|
2005-11-29 12:45:18 +00:00
|
|
|
VerifyStorage();
|
2006-04-28 17:35:03 +00:00
|
|
|
|
|
|
|
/* duplicate */
|
2006-01-06 03:46:54 +00:00
|
|
|
for (int v =0; v<m_bmesh->totvert; v++)
|
|
|
|
VECCOPY(m_transverts[v], m_bmesh->mvert[v].co);
|
|
|
|
|
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
|
|
|
m_armobj->ApplyPose();
|
|
|
|
|
2008-06-18 06:46:49 +00:00
|
|
|
// save matrix first
|
|
|
|
Mat4CpyMat4(obmat, m_objMesh->obmat);
|
|
|
|
// set reference matrix
|
|
|
|
Mat4CpyMat4(m_objMesh->obmat, m_obmat);
|
|
|
|
|
2007-11-17 21:12:25 +00:00
|
|
|
armature_deform_verts( par_arma, m_objMesh, NULL, m_transverts, NULL, m_bmesh->totvert, ARM_DEF_VGROUP, NULL, NULL );
|
2008-06-18 06:46:49 +00:00
|
|
|
|
|
|
|
// restore matrix
|
|
|
|
Mat4CpyMat4(m_objMesh->obmat, obmat);
|
|
|
|
|
Merge of apricot branch game engine changes into trunk, excluding GLSL.
GLEW
====
Added the GLEW opengl extension library into extern/, always compiled
into Blender now. This is much nicer than doing this kind of extension
management manually, and will be used in the game engine, for GLSL, and
other opengl extensions.
* According to the GLEW website it works on Windows, Linux, Mac OS X,
FreeBSD, Irix, and Solaris. There might still be platform specific
issues due to this commit, so let me know and I'll look into it.
* This means also that all extensions will now always be compiled in,
regardless of the glext.h on the platform where compilation happens.
Game Engine
===========
Refactoring of the use of opengl extensions and other drawing code
in the game engine, and cleaning up some hacks related to GLSL
integration. These changes will be merged into trunk too after this.
The game engine graphics demos & apricot level survived my tests,
but this could use some good testing of course.
For users: please test with the options "Generate Display Lists" and
"Vertex Arrays" enabled, these should be the fastest and are supposed
to be "unreliable", but if that's the case that's probably due to bugs
that can be fixed.
* The game engine now also uses GLEW for extensions, replacing the
custom opengl extensions code that was there. Removes a lot of
#ifdef's, but the runtime checks stay of course.
* Removed the WITHOUT_GLEXT environment variable. This was added to
work around a specific bug and only disabled multitexturing anyway.
It might also have caused a slowdown since it was retrieving the
environment variable for every vertex in immediate mode (bug #13680).
* Refactored the code to allow drawing skinned meshes with vertex
arrays too, removing some specific immediate mode drawing functions
for this that only did extra normal calculation. Now it always splits
vertices of flat faces instead.
* Refactored normal recalculation with some minor optimizations,
required for the above change.
* Removed some outdated code behind the __NLA_OLDDEFORM #ifdef.
* Fixed various bugs in setting of multitexture coordinates and vertex
attributes for vertex arrays. These were not being enabled/disabled
correct according to the opengl spec, leading to crashes. Also tangent
attributes used an immediate mode call for vertex arrays, which can't
work.
* Fixed use of uninitialized variable in RAS_TexVert.
* Exporting skinned meshes was doing O(n^2) lookups for vertices and
deform weights, now uses same trick as regular meshes.
2008-06-17 10:27:34 +00:00
|
|
|
#ifdef __NLA_DEFNORMALS
|
2002-10-12 11:37:38 +00:00
|
|
|
RecalcNormals();
|
Merge of apricot branch game engine changes into trunk, excluding GLSL.
GLEW
====
Added the GLEW opengl extension library into extern/, always compiled
into Blender now. This is much nicer than doing this kind of extension
management manually, and will be used in the game engine, for GLSL, and
other opengl extensions.
* According to the GLEW website it works on Windows, Linux, Mac OS X,
FreeBSD, Irix, and Solaris. There might still be platform specific
issues due to this commit, so let me know and I'll look into it.
* This means also that all extensions will now always be compiled in,
regardless of the glext.h on the platform where compilation happens.
Game Engine
===========
Refactoring of the use of opengl extensions and other drawing code
in the game engine, and cleaning up some hacks related to GLSL
integration. These changes will be merged into trunk too after this.
The game engine graphics demos & apricot level survived my tests,
but this could use some good testing of course.
For users: please test with the options "Generate Display Lists" and
"Vertex Arrays" enabled, these should be the fastest and are supposed
to be "unreliable", but if that's the case that's probably due to bugs
that can be fixed.
* The game engine now also uses GLEW for extensions, replacing the
custom opengl extensions code that was there. Removes a lot of
#ifdef's, but the runtime checks stay of course.
* Removed the WITHOUT_GLEXT environment variable. This was added to
work around a specific bug and only disabled multitexturing anyway.
It might also have caused a slowdown since it was retrieving the
environment variable for every vertex in immediate mode (bug #13680).
* Refactored the code to allow drawing skinned meshes with vertex
arrays too, removing some specific immediate mode drawing functions
for this that only did extra normal calculation. Now it always splits
vertices of flat faces instead.
* Refactored normal recalculation with some minor optimizations,
required for the above change.
* Removed some outdated code behind the __NLA_OLDDEFORM #ifdef.
* Fixed various bugs in setting of multitexture coordinates and vertex
attributes for vertex arrays. These were not being enabled/disabled
correct according to the opengl spec, leading to crashes. Also tangent
attributes used an immediate mode call for vertex arrays, which can't
work.
* Fixed use of uninitialized variable in RAS_TexVert.
* Exporting skinned meshes was doing O(n^2) lookups for vertices and
deform weights, now uses same trick as regular meshes.
2008-06-17 10:27:34 +00:00
|
|
|
#endif
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
/* Update the current frame */
|
2008-06-18 06:46:49 +00:00
|
|
|
m_lastArmaUpdate=m_armobj->GetLastFrame();
|
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
|
|
|
|
2008-09-17 01:29:54 +00:00
|
|
|
m_armobj->RestorePose();
|
|
|
|
|
2008-06-18 06:46:49 +00:00
|
|
|
/* indicate that the m_transverts and normals are up to date */
|
|
|
|
return true;
|
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
|
|
|
|
2008-06-18 06:46:49 +00:00
|
|
|
return false;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
|
2005-11-29 12:45:18 +00:00
|
|
|
/* XXX note: I propose to drop this function */
|
2002-10-12 11:37:38 +00:00
|
|
|
void BL_SkinDeformer::SetArmature(BL_ArmatureObject *armobj)
|
|
|
|
{
|
2006-01-06 03:46:54 +00:00
|
|
|
// only used to set the object now
|
|
|
|
m_armobj = armobj;
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|