Skip to content

Commit

Permalink
UPBGE: Rename KX_SG_* classes to KX_*.
Browse files Browse the repository at this point in the history
  • Loading branch information
panzergame committed Oct 14, 2017
1 parent 548422d commit 2b8f791
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 23 deletions.
4 changes: 2 additions & 2 deletions source/gameengine/Converter/BL_BlenderDataConversion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@
#include "KX_Globals.h"
#include "KX_PyConstraintBinding.h"
#include "KX_KetsjiEngine.h"
#include "KX_SG_NodeRelationships.h"
#include "KX_SG_BoneParentNodeRelationship.h"
#include "KX_NodeRelationships.h"
#include "KX_BoneParentNodeRelationship.h"
#include "KX_MotionState.h"
#include "KX_NavMeshObject.h"
#include "KX_ObstacleSimulation.h"
Expand Down
8 changes: 4 additions & 4 deletions source/gameengine/Ketsji/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ set(SRC
KX_SCA_DynamicActuator.cpp
KX_SCA_EndObjectActuator.cpp
KX_SCA_ReplaceMeshActuator.cpp
KX_SG_BoneParentNodeRelationship.cpp
KX_SG_NodeRelationships.cpp
KX_BoneParentNodeRelationship.cpp
KX_NodeRelationships.cpp
KX_ScalarInterpolator.cpp
KX_ScalingInterpolator.cpp
KX_Scene.cpp
Expand Down Expand Up @@ -221,8 +221,8 @@ set(SRC
KX_SCA_DynamicActuator.h
KX_SCA_EndObjectActuator.h
KX_SCA_ReplaceMeshActuator.h
KX_SG_BoneParentNodeRelationship.h
KX_SG_NodeRelationships.h
KX_BoneParentNodeRelationship.h
KX_NodeRelationships.h
KX_ScalarInterpolator.h
KX_ScalingInterpolator.h
KX_Scene.h
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* ***** END GPL LICENSE BLOCK *****
*/

/** \file gameengine/Ketsji/KX_SG_BoneParentNodeRelationship.cpp
/** \file gameengine/Ketsji/KX_BoneParentNodeRelationship.cpp
* \ingroup ketsji
*/

Expand All @@ -34,18 +34,18 @@

#include "BLI_utildefines.h"

#include "KX_SG_BoneParentNodeRelationship.h"
#include "KX_BoneParentNodeRelationship.h"

#include "MT_Matrix4x4.h"
#include "BL_ArmatureObject.h"


/**
* Implementation of classes defined in KX_SG_BoneParentNodeRelationship.h
* Implementation of classes defined in KX_BoneParentNodeRelationship.h
*/

/**
* first of all KX_SG_BoneParentRelation
* first of all KX_BoneParentRelation
*/

KX_BoneParentRelation *
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
*
*/

/** \file KX_SG_BoneParentNodeRelationship.h
/** \file KX_BoneParentNodeRelationship.h
* \ingroup ketsji
*/

#ifndef __KX_SG_BONEPARENTNODERELATIONSHIP_H__
#define __KX_SG_BONEPARENTNODERELATIONSHIP_H__
#ifndef __KX_BONEPARENTNODERELATIONSHIP_H__
#define __KX_BONEPARENTNODERELATIONSHIP_H__

#include "SG_Node.h"
#include "SG_ParentRelation.h"
Expand All @@ -47,7 +47,7 @@ class KX_BoneParentRelation : public SG_ParentRelation

public :
/**
* Allocate and construct a new KX_SG_BoneParentRelation
* Allocate and construct a new KX_BoneParentRelation
* on the heap.
*
* bone is the bone id to use. Currently it is a pointer
Expand Down
2 changes: 1 addition & 1 deletion source/gameengine/Ketsji/KX_GameObject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
// This file defines relationships between parents and children
// in the game engine.

#include "KX_SG_NodeRelationships.h"
#include "KX_NodeRelationships.h"

#include "BLI_math.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@
* ***** END GPL LICENSE BLOCK *****
*/

/** \file gameengine/Ketsji/KX_SG_NodeRelationships.cpp
/** \file gameengine/Ketsji/KX_NodeRelationships.cpp
* \ingroup ketsji
*/


#include "KX_SG_NodeRelationships.h"
#include "KX_NodeRelationships.h"

#include "BLI_utildefines.h"

/**
* Implementation of classes defined in KX_SG_NodeRelationships.h
* Implementation of classes defined in KX_NodeRelationships.h
*/

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
*
*/

/** \file KX_SG_NodeRelationships.h
/** \file KX_NodeRelationships.h
* \ingroup ketsji
* \section KX_SG_NodeRelationships
* \section KX_NodeRelationships
* This file provides common concrete implementations of
* SG_ParentRelation used by the game engine. These are
* KX_SlowParentRelation a slow parent relationship.
Expand All @@ -39,8 +39,8 @@
* inherited by the child.
*/

#ifndef __KX_SG_NODERELATIONSHIPS_H__
#define __KX_SG_NODERELATIONSHIPS_H__
#ifndef __KX_NODERELATIONSHIPS_H__
#define __KX_NODERELATIONSHIPS_H__

#include "SG_Node.h"
#include "SG_ParentRelation.h"
Expand Down
2 changes: 1 addition & 1 deletion source/gameengine/Ketsji/KX_Scene.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
#include "DNA_scene_types.h"
#include "DNA_property_types.h"

#include "KX_SG_NodeRelationships.h"
#include "KX_NodeRelationships.h"

#include "KX_NetworkMessageScene.h"
#include "PHY_IPhysicsEnvironment.h"
Expand Down

0 comments on commit 2b8f791

Please sign in to comment.