Skip to content

Commit 259e035

Browse files
committed
src/xrPhysics - the case of letters in include strings has been changed
1 parent 65b7a4d commit 259e035

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+119
-120
lines changed

src/xrPhysics/ElevatorState.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef ELEVATOR_STAETE
22
#define ELEVATOR_STAETE
33

4-
#include "ielevatorstate.h"
4+
#include "IElevatorState.h"
55
class CPHCharacter;
66
struct dContact;
77
struct SGameMtl;

src/xrPhysics/ExtendedGeom.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include "stdafx.h"
2-
#include "extendedgeom.h"
3-
#include "dcylinder/dcylinder.h"
2+
#include "ExtendedGeom.h"
3+
#include "dcylinder/dCylinder.h"
44
bool IsCyliderContact(const dContact& c)
55
{
66
int geomClass = -1;

src/xrPhysics/ExtendedGeom.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <ode/common.h>
1010
#include <ode/collision.h>
11-
#include "physicscommon.h"
11+
#include "PhysicsCommon.h"
1212
#include "MathUtils.h"
1313
#ifdef DEBUG
1414
#include "debug_output.h"

src/xrPhysics/Geometry.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
#define GEOMETRY_H
44
#include "PhysicsCommon.h"
55
#include "ExtendedGeom.h"
6-
#include "mathutilsode.h"
7-
#include "xrEngine/iphysicsgeometry.h"
6+
#include "MathUtilsOde.h"
7+
#include "xrEngine/IPhysicsGeometry.h"
88
#include "xrCore/_cylinder.h"
99

1010
// this is equivalent dMULTIPLYOP0_333 whith consequent transposion of A

src/xrPhysics/GeometryBits.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
#include "GeometryBits.h"
44

5-
#include "phworld.h"
6-
#include "geometry.h"
5+
#include "PHWorld.h"
6+
#include "Geometry.h"
77

88
enum geom_category { gct_static = 1 << 0, gct_dynamic = 1 << 1 };
99

src/xrPhysics/IActivationShape.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#include "stdafx.h"
2-
#include "iactivationshape.h"
3-
#include "phactivationshape.h"
4-
#include "physics.h"
5-
#include "iphysicsshellholder.h"
6-
#include "phcollidevalidator.h"
2+
#include "IActivationShape.h"
3+
#include "PHActivationShape.h"
4+
#include "Physics.h"
5+
#include "IPhysicsShellHolder.h"
6+
#include "PHCollideValidator.h"
77
void ActivateShapeExplosive(IPhysicsShellHolder* self_obj, const Fvector& size, Fvector& out_size, Fvector& in_out_pos)
88
{
99
//////////////

src/xrPhysics/IPHStaticGeomShell.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
#include "physicsexternalcommon.h"
2+
#include "PhysicsExternalCommon.h"
33
class IPHStaticGeomShell
44
{
55
protected:

src/xrPhysics/IPHWorld.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
#include "physicsexternalcommon.h"
2+
#include "PhysicsExternalCommon.h"
33
#include "iphysics_scripted.h"
44
#include "xrCore/FTimer.h"
55
#include "xrCDB/xrCDB.h" // build_callback

src/xrPhysics/MovementBoxDynamicActivate.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#include "stdafx.h"
22

3-
#include "movementboxdynamicactivate.h"
3+
#include "MovementBoxDynamicActivate.h"
44

55
#include "ExtendedGeom.h"
66
#include "MathUtils.h"
77
#include "Physics.h"
88
#include "ph_valid_ode.h"
99
#include "MathUtilsOde.h"
10-
#include "iphysicsshellholder.h"
11-
#include "phcharacter.h"
10+
#include "IPhysicsShellHolder.h"
11+
#include "PHCharacter.h"
1212
#include "xrEngine/GameMtlLib.h"
1313

1414
ObjectContactCallbackFun* saved_callback = 0;

src/xrPhysics/PHAICharacter.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
#include "Physics.h"
55
#include "ExtendedGeom.h"
66
#include "xrCDB/Intersect.hpp"
7-
#include "tri-colliderKNoOPC\__aabb_tri.h"
7+
#include "tri-colliderknoopc/__aabb_tri.h"
88

9-
#include "phaicharacter.h"
9+
#include "PHAICharacter.h"
1010
#include "xrEngine/device.h"
1111

1212
#ifdef DEBUG

0 commit comments

Comments
 (0)