summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-games/crystalspace/files')
-rw-r--r--dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_01.patch26
-rw-r--r--dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_02.patch53
-rw-r--r--dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_03.patch11
-rw-r--r--dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_04.patch42
-rw-r--r--dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_05.patch66
-rw-r--r--dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_06.patch32
-rw-r--r--dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_07.patch24
-rw-r--r--dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_08.patch298
-rw-r--r--dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_09.patch113
-rw-r--r--dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_10.patch14
-rw-r--r--dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_11.patch113
-rw-r--r--dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_12.patch24
-rw-r--r--dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_13.patch24
-rw-r--r--dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_01.patch11
-rw-r--r--dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_02.patch29
-rw-r--r--dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_03.patch11
-rw-r--r--dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_04.patch20
-rw-r--r--dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_05.patch29
18 files changed, 0 insertions, 940 deletions
diff --git a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_01.patch b/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_01.patch
deleted file mode 100644
index 2e80054..0000000
--- a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_01.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- plugins/physics/odedynam/odedynam.cpp 2012-01-14 04:39:50.000000000 +0100
-+++ plugins/physics/odedynam/odedynam.cpp 2012-07-13 09:38:15.254617788 +0200
-@@ -798,20 +798,13 @@
- while (total_elapsed > stepsize)
- {
- total_elapsed -= stepsize;
-- if (!stepfast)
-+ if (!quickstep)
- {
-- if (!quickstep)
-- {
-- dWorldStep (worldID, stepsize);
-- }
-- else
-- {
-- dWorldQuickStep (worldID, stepsize);
-- }
-+ dWorldStep (worldID, stepsize);
- }
- else
- {
-- dWorldStepFast1 (worldID, stepsize, sfiter);
-+ dWorldQuickStep (worldID, stepsize);
- }
- for (size_t i = 0; i < bodies.GetSize (); i ++)
- {
diff --git a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_02.patch b/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_02.patch
deleted file mode 100644
index 15c93a7..0000000
--- a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_02.patch
+++ /dev/null
@@ -1,53 +0,0 @@
---- apps/tutorial/phystut/phystut.cpp 2012-01-14 04:39:47.000000000 +0100
-+++ apps/tutorial/phystut/phystut.cpp 2012-07-13 09:50:04.941321137 +0200
-@@ -204,7 +204,7 @@
- if (solver==0)
- hudManager->GetStateDescriptions ()->Push (csString ("Solver: WorldStep"));
- else if (solver==1)
-- hudManager->GetStateDescriptions ()->Push (csString ("Solver: StepFast"));
-+ hudManager->GetStateDescriptions ()->Push (csString ("Solver: QuickStep"));
- else if (solver==2)
- hudManager->GetStateDescriptions ()->Push (csString ("Solver: QuickStep"));
- }
-@@ -471,27 +471,9 @@
- return true;
- }
-
-- else if (csKeyEventHelper::GetCookedCode (&ev) == '1'
-- && phys_engine_id == ODE_ID)
-- {
-- // Toggle stepfast.
-- csRef<iODEDynamicSystemState> osys =
-- scfQueryInterface<iODEDynamicSystemState> (dynamicSystem);
-- osys->EnableStepFast (0);
-- solver=0;
-- return true;
-- }
-- else if (csKeyEventHelper::GetCookedCode (&ev) == '2'
-- && phys_engine_id == ODE_ID)
-- {
-- // Toggle stepfast.
-- csRef<iODEDynamicSystemState> osys =
-- scfQueryInterface<iODEDynamicSystemState> (dynamicSystem);
-- osys->EnableStepFast (1);
-- solver=1;
-- return true;
-- }
-- else if (csKeyEventHelper::GetCookedCode (&ev) == '3'
-+ else if ( ( (csKeyEventHelper::GetCookedCode (&ev) == '1')
-+ || (csKeyEventHelper::GetCookedCode (&ev) == '2')
-+ || (csKeyEventHelper::GetCookedCode (&ev) == '3') )
- && phys_engine_id == ODE_ID)
- {
- // Toggle quickstep.
-@@ -992,8 +974,8 @@
- hudManager->GetKeyDescriptions ()->Push ("I: toggle autodisable");
- if (phys_engine_id == ODE_ID)
- {
-- hudManager->GetKeyDescriptions ()->Push ("1: enable StepFast solver");
-- hudManager->GetKeyDescriptions ()->Push ("2: disable StepFast solver");
-+ hudManager->GetKeyDescriptions ()->Push ("1: enable QuickStep solver");
-+ hudManager->GetKeyDescriptions ()->Push ("2: enable QuickStep solver");
- hudManager->GetKeyDescriptions ()->Push ("3: enable QuickStep solver");
- }
- #ifdef CS_HAVE_BULLET_SERIALIZER
diff --git a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_03.patch b/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_03.patch
deleted file mode 100644
index e88cacd..0000000
--- a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_03.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- plugins/physics/loader/physldr.cpp 2012-01-14 04:39:50.000000000 +0100
-+++ plugins/physics/loader/physldr.cpp 2012-07-13 09:52:14.424661375 +0200
-@@ -341,7 +341,7 @@
- osys->EnableStepFast(false);
- break;
- case XMLTOKEN_STEPFAST:
-- osys->EnableStepFast(true);
-+ osys->EnableQuickStep(true);
- break;
- case XMLTOKEN_QUICKSTEP:
- osys->EnableQuickStep(true);
diff --git a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_04.patch b/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_04.patch
deleted file mode 100644
index 8d65011..0000000
--- a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_04.patch
+++ /dev/null
@@ -1,42 +0,0 @@
---- plugins/physics/odedynam/odedynam.h 2012-01-14 04:39:50.000000000 +0100
-+++ plugins/physics/odedynam/odedynam.h 2012-07-13 09:54:04.331333777 +0200
-@@ -142,7 +142,6 @@
-
- csRefArray<iDynamicsStepCallback> step_callbacks;
-
-- bool stepfast;
- int sfiter;
- bool quickstep;
- int qsiter;
-@@ -189,10 +188,6 @@
- void SetGlobalCFM (float cfm);
- float GlobalCFM () { return cfm; }
-
-- void EnableStepFast (bool enable);
-- bool StepFastEnabled () { return stepfast; }
-- void SetStepFastIterations (int iter);
-- int StepFastIterations () { return sfiter; }
- void EnableQuickStep (bool enable);
- bool QuickStepEnabled () { return quickstep; };
- void SetQuickStepIterations (int iter);
-@@ -275,7 +270,6 @@
- float total_elapsed;
- csRefArrayObject<iODEFrameUpdateCallback> updates;
-
-- bool stepfast;
- int sfiter;
- bool quickstep;
- int qsiter;
-@@ -291,11 +285,7 @@
- float ERP () { return dWorldGetERP (worldID); }
- void SetCFM (float cfm) { dWorldSetCFM (worldID, cfm); }
- float CFM () { return dWorldGetCFM (worldID); }
-- void EnableStepFast (bool enable) { stepfast = enable; quickstep = false; };
-- bool StepFastEnabled () { return stepfast; }
-- void SetStepFastIterations (int iter) { sfiter = iter; }
-- int StepFastIterations () { return sfiter; }
-- void EnableQuickStep (bool enable) { quickstep = enable; stepfast = false; };
-+ void EnableQuickStep (bool enable) { quickstep = enable; };
- bool QuickStepEnabled () { return quickstep; };
- void SetQuickStepIterations (int iter) { qsiter = iter; };
- int QuickStepIterations () { return qsiter; }
diff --git a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_05.patch b/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_05.patch
deleted file mode 100644
index d8c6a81..0000000
--- a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_05.patch
+++ /dev/null
@@ -1,66 +0,0 @@
---- plugins/physics/odedynam/odedynam.cpp 2012-07-13 09:38:15.000000000 +0200
-+++ plugins/physics/odedynam/odedynam.cpp 2012-07-13 09:55:26.401338100 +0200
-@@ -206,8 +206,6 @@
- limittime = 1.0f;
- total_elapsed = 0.0f;
-
-- stepfast = false;
-- sfiter = 10;
- quickstep = false;
- qsiter = 10;
- fastobjects = false;
-@@ -285,8 +283,7 @@
- csRef<csODEDynamicSystem> system;
- system.AttachNew (new csODEDynamicSystem (object_reg, erp, cfm));
- systems.Push (system);
-- if(stepfast) system->EnableStepFast(true);
-- else if(quickstep) system->EnableQuickStep(true);
-+ if(quickstep) system->EnableQuickStep(true);
- return csPtr<iDynamicSystem> (system);
- }
-
-@@ -494,35 +491,9 @@
- }
- }
-
--void csODEDynamics::EnableStepFast (bool enable)
--{
-- stepfast = enable;
-- quickstep = false;
--
-- for (size_t i = 0; i < systems.GetSize (); i ++)
-- {
-- csRef<iODEDynamicSystemState> sys =
-- scfQueryInterface<iODEDynamicSystemState> (systems[i]);
-- sys->EnableStepFast (enable);
-- }
--}
--
--void csODEDynamics::SetStepFastIterations (int iter)
--{
-- sfiter = iter;
--
-- for (size_t i = 0; i < systems.GetSize (); i ++)
-- {
-- csRef<iODEDynamicSystemState> sys =
-- scfQueryInterface<iODEDynamicSystemState> (systems[i]);
-- sys->SetStepFastIterations (iter);
-- }
--}
--
- void csODEDynamics::EnableQuickStep (bool enable)
- {
- quickstep = enable;
-- stepfast = false;
-
- for (size_t i = 0; i < systems.GetSize (); i ++)
- {
-@@ -621,8 +592,6 @@
- steptime = 0.01f;
- limittime = 1.0f;
-
-- stepfast = false;
-- sfiter = 10;
- quickstep = false;
- qsiter = 10;
- fastobjects = false;
diff --git a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_06.patch b/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_06.patch
deleted file mode 100644
index 0a4c8f2..0000000
--- a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_06.patch
+++ /dev/null
@@ -1,32 +0,0 @@
---- include/ivaria/ode.h 2012-01-14 04:41:01.000000000 +0100
-+++ include/ivaria/ode.h 2012-07-13 09:57:20.284677366 +0200
-@@ -56,12 +56,6 @@
- virtual void SetGlobalCFM (float cfm) = 0;
- virtual float GlobalCFM () = 0;
-
-- /// Enables the experimental StepFast code in ode
-- virtual void EnableStepFast (bool enable) = 0;
-- virtual bool StepFastEnabled () = 0;
-- virtual void SetStepFastIterations (int iter) = 0;
-- virtual int StepFastIterations () = 0;
--
- virtual void EnableQuickStep (bool enable) = 0;
- virtual bool QuickStepEnabled () = 0;
- virtual void SetQuickStepIterations (int iter) = 0;
-@@ -151,16 +145,6 @@
- virtual void SetCFM (float cfm) = 0;
- virtual float CFM () = 0;
-
-- /**
-- * Enables the experimental StepFast code in ode
-- * Setting this in ODEDynamicState sets it here
-- * Only modify it if you want a specific system to behave differently
-- */
-- virtual void EnableStepFast (bool enable) = 0;
-- virtual bool StepFastEnabled () = 0;
-- virtual void SetStepFastIterations (int iter) = 0;
-- virtual int StepFastIterations () = 0;
--
- virtual void EnableQuickStep (bool enable) = 0;
- virtual bool QuickStepEnabled () = 0;
- virtual void SetQuickStepIterations (int iter) = 0;
diff --git a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_07.patch b/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_07.patch
deleted file mode 100644
index 4d5fe38..0000000
--- a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_07.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- scripts/perl5/cspace.pm 2012-01-14 04:39:45.000000000 +0100
-+++ scripts/perl5/cspace.pm 2012-07-13 09:58:28.784680943 +0200
-@@ -7615,10 +7615,6 @@
- *GlobalERP = *cspacec::iODEDynamicState_GlobalERP;
- *SetGlobalCFM = *cspacec::iODEDynamicState_SetGlobalCFM;
- *GlobalCFM = *cspacec::iODEDynamicState_GlobalCFM;
--*EnableStepFast = *cspacec::iODEDynamicState_EnableStepFast;
--*StepFastEnabled = *cspacec::iODEDynamicState_StepFastEnabled;
--*SetStepFastIterations = *cspacec::iODEDynamicState_SetStepFastIterations;
--*StepFastIterations = *cspacec::iODEDynamicState_StepFastIterations;
- *EnableQuickStep = *cspacec::iODEDynamicState_EnableQuickStep;
- *QuickStepEnabled = *cspacec::iODEDynamicState_QuickStepEnabled;
- *SetQuickStepIterations = *cspacec::iODEDynamicState_SetQuickStepIterations;
-@@ -7671,10 +7667,6 @@
- *ERP = *cspacec::iODEDynamicSystemState_ERP;
- *SetCFM = *cspacec::iODEDynamicSystemState_SetCFM;
- *CFM = *cspacec::iODEDynamicSystemState_CFM;
--*EnableStepFast = *cspacec::iODEDynamicSystemState_EnableStepFast;
--*StepFastEnabled = *cspacec::iODEDynamicSystemState_StepFastEnabled;
--*SetStepFastIterations = *cspacec::iODEDynamicSystemState_SetStepFastIterations;
--*StepFastIterations = *cspacec::iODEDynamicSystemState_StepFastIterations;
- *EnableQuickStep = *cspacec::iODEDynamicSystemState_EnableQuickStep;
- *QuickStepEnabled = *cspacec::iODEDynamicSystemState_QuickStepEnabled;
- *SetQuickStepIterations = *cspacec::iODEDynamicSystemState_SetQuickStepIterations;
diff --git a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_08.patch b/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_08.patch
deleted file mode 100644
index 4d4a405..0000000
--- a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_08.patch
+++ /dev/null
@@ -1,298 +0,0 @@
---- scripts/perl5/cswigpl5.inc 2012-01-14 04:39:44.000000000 +0100
-+++ scripts/perl5/cswigpl5.inc 2012-07-13 10:01:29.328023720 +0200
-@@ -151643,136 +151643,6 @@
- }
-
-
--XS(_wrap_iODEDynamicState_EnableStepFast) {
-- {
-- iODEDynamicState *arg1 = (iODEDynamicState *) 0 ;
-- bool arg2 ;
-- void *argp1 = 0 ;
-- int res1 = 0 ;
-- bool val2 ;
-- int ecode2 = 0 ;
-- int argvi = 0;
-- dXSARGS;
--
-- if ((items < 2) || (items > 2)) {
-- SWIG_croak("Usage: iODEDynamicState_EnableStepFast(self,enable);");
-- }
-- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_iODEDynamicState, 0 | 0 );
-- if (!SWIG_IsOK(res1)) {
-- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iODEDynamicState_EnableStepFast" "', argument " "1"" of type '" "iODEDynamicState *""'");
-- }
-- arg1 = reinterpret_cast< iODEDynamicState * >(argp1);
-- ecode2 = SWIG_AsVal_bool SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
-- if (!SWIG_IsOK(ecode2)) {
-- SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iODEDynamicState_EnableStepFast" "', argument " "2"" of type '" "bool""'");
-- }
-- arg2 = static_cast< bool >(val2);
-- (arg1)->EnableStepFast(arg2);
--
--
--
-- XSRETURN(argvi);
-- fail:
--
--
-- SWIG_croak_null();
-- }
--}
--
--
--XS(_wrap_iODEDynamicState_StepFastEnabled) {
-- {
-- iODEDynamicState *arg1 = (iODEDynamicState *) 0 ;
-- void *argp1 = 0 ;
-- int res1 = 0 ;
-- int argvi = 0;
-- bool result;
-- dXSARGS;
--
-- if ((items < 1) || (items > 1)) {
-- SWIG_croak("Usage: iODEDynamicState_StepFastEnabled(self);");
-- }
-- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_iODEDynamicState, 0 | 0 );
-- if (!SWIG_IsOK(res1)) {
-- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iODEDynamicState_StepFastEnabled" "', argument " "1"" of type '" "iODEDynamicState *""'");
-- }
-- arg1 = reinterpret_cast< iODEDynamicState * >(argp1);
-- result = (bool)(arg1)->StepFastEnabled();
-- ST(argvi) = SWIG_From_bool SWIG_PERL_CALL_ARGS_1(static_cast< bool >(result)); argvi++ ;
--
-- XSRETURN(argvi);
-- fail:
--
-- SWIG_croak_null();
-- }
--}
--
--
--XS(_wrap_iODEDynamicState_SetStepFastIterations) {
-- {
-- iODEDynamicState *arg1 = (iODEDynamicState *) 0 ;
-- int arg2 ;
-- void *argp1 = 0 ;
-- int res1 = 0 ;
-- int val2 ;
-- int ecode2 = 0 ;
-- int argvi = 0;
-- dXSARGS;
--
-- if ((items < 2) || (items > 2)) {
-- SWIG_croak("Usage: iODEDynamicState_SetStepFastIterations(self,iter);");
-- }
-- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_iODEDynamicState, 0 | 0 );
-- if (!SWIG_IsOK(res1)) {
-- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iODEDynamicState_SetStepFastIterations" "', argument " "1"" of type '" "iODEDynamicState *""'");
-- }
-- arg1 = reinterpret_cast< iODEDynamicState * >(argp1);
-- ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
-- if (!SWIG_IsOK(ecode2)) {
-- SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iODEDynamicState_SetStepFastIterations" "', argument " "2"" of type '" "int""'");
-- }
-- arg2 = static_cast< int >(val2);
-- (arg1)->SetStepFastIterations(arg2);
--
--
--
-- XSRETURN(argvi);
-- fail:
--
--
-- SWIG_croak_null();
-- }
--}
--
--
--XS(_wrap_iODEDynamicState_StepFastIterations) {
-- {
-- iODEDynamicState *arg1 = (iODEDynamicState *) 0 ;
-- void *argp1 = 0 ;
-- int res1 = 0 ;
-- int argvi = 0;
-- int result;
-- dXSARGS;
--
-- if ((items < 1) || (items > 1)) {
-- SWIG_croak("Usage: iODEDynamicState_StepFastIterations(self);");
-- }
-- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_iODEDynamicState, 0 | 0 );
-- if (!SWIG_IsOK(res1)) {
-- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iODEDynamicState_StepFastIterations" "', argument " "1"" of type '" "iODEDynamicState *""'");
-- }
-- arg1 = reinterpret_cast< iODEDynamicState * >(argp1);
-- result = (int)(arg1)->StepFastIterations();
-- ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1(static_cast< int >(result)); argvi++ ;
--
-- XSRETURN(argvi);
-- fail:
--
-- SWIG_croak_null();
-- }
--}
--
--
- XS(_wrap_iODEDynamicState_EnableQuickStep) {
- {
- iODEDynamicState *arg1 = (iODEDynamicState *) 0 ;
-@@ -152477,136 +152347,6 @@
- }
-
-
--XS(_wrap_iODEDynamicSystemState_EnableStepFast) {
-- {
-- iODEDynamicSystemState *arg1 = (iODEDynamicSystemState *) 0 ;
-- bool arg2 ;
-- void *argp1 = 0 ;
-- int res1 = 0 ;
-- bool val2 ;
-- int ecode2 = 0 ;
-- int argvi = 0;
-- dXSARGS;
--
-- if ((items < 2) || (items > 2)) {
-- SWIG_croak("Usage: iODEDynamicSystemState_EnableStepFast(self,enable);");
-- }
-- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_iODEDynamicSystemState, 0 | 0 );
-- if (!SWIG_IsOK(res1)) {
-- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iODEDynamicSystemState_EnableStepFast" "', argument " "1"" of type '" "iODEDynamicSystemState *""'");
-- }
-- arg1 = reinterpret_cast< iODEDynamicSystemState * >(argp1);
-- ecode2 = SWIG_AsVal_bool SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
-- if (!SWIG_IsOK(ecode2)) {
-- SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iODEDynamicSystemState_EnableStepFast" "', argument " "2"" of type '" "bool""'");
-- }
-- arg2 = static_cast< bool >(val2);
-- (arg1)->EnableStepFast(arg2);
--
--
--
-- XSRETURN(argvi);
-- fail:
--
--
-- SWIG_croak_null();
-- }
--}
--
--
--XS(_wrap_iODEDynamicSystemState_StepFastEnabled) {
-- {
-- iODEDynamicSystemState *arg1 = (iODEDynamicSystemState *) 0 ;
-- void *argp1 = 0 ;
-- int res1 = 0 ;
-- int argvi = 0;
-- bool result;
-- dXSARGS;
--
-- if ((items < 1) || (items > 1)) {
-- SWIG_croak("Usage: iODEDynamicSystemState_StepFastEnabled(self);");
-- }
-- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_iODEDynamicSystemState, 0 | 0 );
-- if (!SWIG_IsOK(res1)) {
-- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iODEDynamicSystemState_StepFastEnabled" "', argument " "1"" of type '" "iODEDynamicSystemState *""'");
-- }
-- arg1 = reinterpret_cast< iODEDynamicSystemState * >(argp1);
-- result = (bool)(arg1)->StepFastEnabled();
-- ST(argvi) = SWIG_From_bool SWIG_PERL_CALL_ARGS_1(static_cast< bool >(result)); argvi++ ;
--
-- XSRETURN(argvi);
-- fail:
--
-- SWIG_croak_null();
-- }
--}
--
--
--XS(_wrap_iODEDynamicSystemState_SetStepFastIterations) {
-- {
-- iODEDynamicSystemState *arg1 = (iODEDynamicSystemState *) 0 ;
-- int arg2 ;
-- void *argp1 = 0 ;
-- int res1 = 0 ;
-- int val2 ;
-- int ecode2 = 0 ;
-- int argvi = 0;
-- dXSARGS;
--
-- if ((items < 2) || (items > 2)) {
-- SWIG_croak("Usage: iODEDynamicSystemState_SetStepFastIterations(self,iter);");
-- }
-- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_iODEDynamicSystemState, 0 | 0 );
-- if (!SWIG_IsOK(res1)) {
-- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iODEDynamicSystemState_SetStepFastIterations" "', argument " "1"" of type '" "iODEDynamicSystemState *""'");
-- }
-- arg1 = reinterpret_cast< iODEDynamicSystemState * >(argp1);
-- ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
-- if (!SWIG_IsOK(ecode2)) {
-- SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iODEDynamicSystemState_SetStepFastIterations" "', argument " "2"" of type '" "int""'");
-- }
-- arg2 = static_cast< int >(val2);
-- (arg1)->SetStepFastIterations(arg2);
--
--
--
-- XSRETURN(argvi);
-- fail:
--
--
-- SWIG_croak_null();
-- }
--}
--
--
--XS(_wrap_iODEDynamicSystemState_StepFastIterations) {
-- {
-- iODEDynamicSystemState *arg1 = (iODEDynamicSystemState *) 0 ;
-- void *argp1 = 0 ;
-- int res1 = 0 ;
-- int argvi = 0;
-- int result;
-- dXSARGS;
--
-- if ((items < 1) || (items > 1)) {
-- SWIG_croak("Usage: iODEDynamicSystemState_StepFastIterations(self);");
-- }
-- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_iODEDynamicSystemState, 0 | 0 );
-- if (!SWIG_IsOK(res1)) {
-- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iODEDynamicSystemState_StepFastIterations" "', argument " "1"" of type '" "iODEDynamicSystemState *""'");
-- }
-- arg1 = reinterpret_cast< iODEDynamicSystemState * >(argp1);
-- result = (int)(arg1)->StepFastIterations();
-- ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1(static_cast< int >(result)); argvi++ ;
--
-- XSRETURN(argvi);
-- fail:
--
-- SWIG_croak_null();
-- }
--}
--
--
- XS(_wrap_iODEDynamicSystemState_EnableQuickStep) {
- {
- iODEDynamicSystemState *arg1 = (iODEDynamicSystemState *) 0 ;
-@@ -399406,10 +399146,6 @@
- {"cspacec::iODEDynamicState_GlobalERP", _wrap_iODEDynamicState_GlobalERP},
- {"cspacec::iODEDynamicState_SetGlobalCFM", _wrap_iODEDynamicState_SetGlobalCFM},
- {"cspacec::iODEDynamicState_GlobalCFM", _wrap_iODEDynamicState_GlobalCFM},
--{"cspacec::iODEDynamicState_EnableStepFast", _wrap_iODEDynamicState_EnableStepFast},
--{"cspacec::iODEDynamicState_StepFastEnabled", _wrap_iODEDynamicState_StepFastEnabled},
--{"cspacec::iODEDynamicState_SetStepFastIterations", _wrap_iODEDynamicState_SetStepFastIterations},
--{"cspacec::iODEDynamicState_StepFastIterations", _wrap_iODEDynamicState_StepFastIterations},
- {"cspacec::iODEDynamicState_EnableQuickStep", _wrap_iODEDynamicState_EnableQuickStep},
- {"cspacec::iODEDynamicState_QuickStepEnabled", _wrap_iODEDynamicState_QuickStepEnabled},
- {"cspacec::iODEDynamicState_SetQuickStepIterations", _wrap_iODEDynamicState_SetQuickStepIterations},
-@@ -399432,10 +399168,6 @@
- {"cspacec::iODEDynamicSystemState_ERP", _wrap_iODEDynamicSystemState_ERP},
- {"cspacec::iODEDynamicSystemState_SetCFM", _wrap_iODEDynamicSystemState_SetCFM},
- {"cspacec::iODEDynamicSystemState_CFM", _wrap_iODEDynamicSystemState_CFM},
--{"cspacec::iODEDynamicSystemState_EnableStepFast", _wrap_iODEDynamicSystemState_EnableStepFast},
--{"cspacec::iODEDynamicSystemState_StepFastEnabled", _wrap_iODEDynamicSystemState_StepFastEnabled},
--{"cspacec::iODEDynamicSystemState_SetStepFastIterations", _wrap_iODEDynamicSystemState_SetStepFastIterations},
--{"cspacec::iODEDynamicSystemState_StepFastIterations", _wrap_iODEDynamicSystemState_StepFastIterations},
- {"cspacec::iODEDynamicSystemState_EnableQuickStep", _wrap_iODEDynamicSystemState_EnableQuickStep},
- {"cspacec::iODEDynamicSystemState_QuickStepEnabled", _wrap_iODEDynamicSystemState_QuickStepEnabled},
- {"cspacec::iODEDynamicSystemState_SetQuickStepIterations", _wrap_iODEDynamicSystemState_SetQuickStepIterations},
diff --git a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_09.patch b/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_09.patch
deleted file mode 100644
index d785629..0000000
--- a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_09.patch
+++ /dev/null
@@ -1,113 +0,0 @@
---- plugins/cscript/pyivaria/cs_ivaria.cpp 2012-01-14 04:39:52.000000000 +0100
-+++ plugins/cscript/pyivaria/cs_ivaria.cpp 2012-07-13 10:05:19.908035782 +0200
-@@ -23871,110 +23871,6 @@
- }
-
-
--SWIGINTERN PyObject *_wrap_iODEDynamicState_EnableStepFast(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
-- PyObject *resultobj = 0;
-- iODEDynamicState *arg1 = (iODEDynamicState *) 0 ;
-- bool arg2 ;
-- void *argp1 = 0 ;
-- int res1 = 0 ;
-- bool val2 ;
-- int ecode2 = 0 ;
-- PyObject * obj0 = 0 ;
-- PyObject * obj1 = 0 ;
--
-- if(!PyArg_UnpackTuple(args,(char *)"iODEDynamicState_EnableStepFast",2,2,&obj0,&obj1)) SWIG_fail;
-- res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iODEDynamicState, 0 | 0 );
-- if (!SWIG_IsOK(res1)) {
-- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iODEDynamicState_EnableStepFast" "', argument " "1"" of type '" "iODEDynamicState *""'");
-- }
-- arg1 = reinterpret_cast< iODEDynamicState * >(argp1);
-- ecode2 = SWIG_AsVal_bool(obj1, &val2);
-- if (!SWIG_IsOK(ecode2)) {
-- SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iODEDynamicState_EnableStepFast" "', argument " "2"" of type '" "bool""'");
-- }
-- arg2 = static_cast< bool >(val2);
-- (arg1)->EnableStepFast(arg2);
-- resultobj = SWIG_Py_Void();
-- return resultobj;
--fail:
-- return NULL;
--}
--
--
--SWIGINTERN PyObject *_wrap_iODEDynamicState_StepFastEnabled(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
-- PyObject *resultobj = 0;
-- iODEDynamicState *arg1 = (iODEDynamicState *) 0 ;
-- void *argp1 = 0 ;
-- int res1 = 0 ;
-- PyObject * obj0 = 0 ;
-- bool result;
--
-- if(!PyArg_UnpackTuple(args,(char *)"iODEDynamicState_StepFastEnabled",1,1,&obj0)) SWIG_fail;
-- res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iODEDynamicState, 0 | 0 );
-- if (!SWIG_IsOK(res1)) {
-- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iODEDynamicState_StepFastEnabled" "', argument " "1"" of type '" "iODEDynamicState *""'");
-- }
-- arg1 = reinterpret_cast< iODEDynamicState * >(argp1);
-- result = (bool)(arg1)->StepFastEnabled();
-- resultobj = SWIG_From_bool(static_cast< bool >(result));
-- return resultobj;
--fail:
-- return NULL;
--}
--
--
--SWIGINTERN PyObject *_wrap_iODEDynamicState_SetStepFastIterations(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
-- PyObject *resultobj = 0;
-- iODEDynamicState *arg1 = (iODEDynamicState *) 0 ;
-- int arg2 ;
-- void *argp1 = 0 ;
-- int res1 = 0 ;
-- int val2 ;
-- int ecode2 = 0 ;
-- PyObject * obj0 = 0 ;
-- PyObject * obj1 = 0 ;
--
-- if(!PyArg_UnpackTuple(args,(char *)"iODEDynamicState_SetStepFastIterations",2,2,&obj0,&obj1)) SWIG_fail;
-- res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iODEDynamicState, 0 | 0 );
-- if (!SWIG_IsOK(res1)) {
-- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iODEDynamicState_SetStepFastIterations" "', argument " "1"" of type '" "iODEDynamicState *""'");
-- }
-- arg1 = reinterpret_cast< iODEDynamicState * >(argp1);
-- ecode2 = SWIG_AsVal_int(obj1, &val2);
-- if (!SWIG_IsOK(ecode2)) {
-- SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iODEDynamicState_SetStepFastIterations" "', argument " "2"" of type '" "int""'");
-- }
-- arg2 = static_cast< int >(val2);
-- (arg1)->SetStepFastIterations(arg2);
-- resultobj = SWIG_Py_Void();
-- return resultobj;
--fail:
-- return NULL;
--}
--
--
--SWIGINTERN PyObject *_wrap_iODEDynamicState_StepFastIterations(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
-- PyObject *resultobj = 0;
-- iODEDynamicState *arg1 = (iODEDynamicState *) 0 ;
-- void *argp1 = 0 ;
-- int res1 = 0 ;
-- PyObject * obj0 = 0 ;
-- int result;
--
-- if(!PyArg_UnpackTuple(args,(char *)"iODEDynamicState_StepFastIterations",1,1,&obj0)) SWIG_fail;
-- res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iODEDynamicState, 0 | 0 );
-- if (!SWIG_IsOK(res1)) {
-- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iODEDynamicState_StepFastIterations" "', argument " "1"" of type '" "iODEDynamicState *""'");
-- }
-- arg1 = reinterpret_cast< iODEDynamicState * >(argp1);
-- result = (int)(arg1)->StepFastIterations();
-- resultobj = SWIG_From_int(static_cast< int >(result));
-- return resultobj;
--fail:
-- return NULL;
--}
--
--
- SWIGINTERN PyObject *_wrap_iODEDynamicState_EnableQuickStep(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
- PyObject *resultobj = 0;
- iODEDynamicState *arg1 = (iODEDynamicState *) 0 ;
diff --git a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_10.patch b/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_10.patch
deleted file mode 100644
index 0c89f9a..0000000
--- a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_10.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- plugins/physics/loader/physldr.cpp 2012-07-13 09:52:14.000000000 +0200
-+++ plugins/physics/loader/physldr.cpp 2012-07-13 10:07:22.788041998 +0200
-@@ -338,11 +338,8 @@
- {
- case XMLTOKEN_WORLDSTEP:
- osys->EnableQuickStep(false);
-- osys->EnableStepFast(false);
- break;
- case XMLTOKEN_STEPFAST:
-- osys->EnableQuickStep(true);
-- break;
- case XMLTOKEN_QUICKSTEP:
- osys->EnableQuickStep(true);
- break;
diff --git a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_11.patch b/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_11.patch
deleted file mode 100644
index ccd626e..0000000
--- a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_11.patch
+++ /dev/null
@@ -1,113 +0,0 @@
---- plugins/cscript/pyivaria/cs_ivaria.cpp 2012-07-13 10:05:19.000000000 +0200
-+++ plugins/cscript/pyivaria/cs_ivaria.cpp 2012-07-13 10:09:06.278047627 +0200
-@@ -24440,110 +24440,6 @@
- }
-
-
--SWIGINTERN PyObject *_wrap_iODEDynamicSystemState_EnableStepFast(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
-- PyObject *resultobj = 0;
-- iODEDynamicSystemState *arg1 = (iODEDynamicSystemState *) 0 ;
-- bool arg2 ;
-- void *argp1 = 0 ;
-- int res1 = 0 ;
-- bool val2 ;
-- int ecode2 = 0 ;
-- PyObject * obj0 = 0 ;
-- PyObject * obj1 = 0 ;
--
-- if(!PyArg_UnpackTuple(args,(char *)"iODEDynamicSystemState_EnableStepFast",2,2,&obj0,&obj1)) SWIG_fail;
-- res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iODEDynamicSystemState, 0 | 0 );
-- if (!SWIG_IsOK(res1)) {
-- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iODEDynamicSystemState_EnableStepFast" "', argument " "1"" of type '" "iODEDynamicSystemState *""'");
-- }
-- arg1 = reinterpret_cast< iODEDynamicSystemState * >(argp1);
-- ecode2 = SWIG_AsVal_bool(obj1, &val2);
-- if (!SWIG_IsOK(ecode2)) {
-- SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iODEDynamicSystemState_EnableStepFast" "', argument " "2"" of type '" "bool""'");
-- }
-- arg2 = static_cast< bool >(val2);
-- (arg1)->EnableStepFast(arg2);
-- resultobj = SWIG_Py_Void();
-- return resultobj;
--fail:
-- return NULL;
--}
--
--
--SWIGINTERN PyObject *_wrap_iODEDynamicSystemState_StepFastEnabled(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
-- PyObject *resultobj = 0;
-- iODEDynamicSystemState *arg1 = (iODEDynamicSystemState *) 0 ;
-- void *argp1 = 0 ;
-- int res1 = 0 ;
-- PyObject * obj0 = 0 ;
-- bool result;
--
-- if(!PyArg_UnpackTuple(args,(char *)"iODEDynamicSystemState_StepFastEnabled",1,1,&obj0)) SWIG_fail;
-- res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iODEDynamicSystemState, 0 | 0 );
-- if (!SWIG_IsOK(res1)) {
-- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iODEDynamicSystemState_StepFastEnabled" "', argument " "1"" of type '" "iODEDynamicSystemState *""'");
-- }
-- arg1 = reinterpret_cast< iODEDynamicSystemState * >(argp1);
-- result = (bool)(arg1)->StepFastEnabled();
-- resultobj = SWIG_From_bool(static_cast< bool >(result));
-- return resultobj;
--fail:
-- return NULL;
--}
--
--
--SWIGINTERN PyObject *_wrap_iODEDynamicSystemState_SetStepFastIterations(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
-- PyObject *resultobj = 0;
-- iODEDynamicSystemState *arg1 = (iODEDynamicSystemState *) 0 ;
-- int arg2 ;
-- void *argp1 = 0 ;
-- int res1 = 0 ;
-- int val2 ;
-- int ecode2 = 0 ;
-- PyObject * obj0 = 0 ;
-- PyObject * obj1 = 0 ;
--
-- if(!PyArg_UnpackTuple(args,(char *)"iODEDynamicSystemState_SetStepFastIterations",2,2,&obj0,&obj1)) SWIG_fail;
-- res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iODEDynamicSystemState, 0 | 0 );
-- if (!SWIG_IsOK(res1)) {
-- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iODEDynamicSystemState_SetStepFastIterations" "', argument " "1"" of type '" "iODEDynamicSystemState *""'");
-- }
-- arg1 = reinterpret_cast< iODEDynamicSystemState * >(argp1);
-- ecode2 = SWIG_AsVal_int(obj1, &val2);
-- if (!SWIG_IsOK(ecode2)) {
-- SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "iODEDynamicSystemState_SetStepFastIterations" "', argument " "2"" of type '" "int""'");
-- }
-- arg2 = static_cast< int >(val2);
-- (arg1)->SetStepFastIterations(arg2);
-- resultobj = SWIG_Py_Void();
-- return resultobj;
--fail:
-- return NULL;
--}
--
--
--SWIGINTERN PyObject *_wrap_iODEDynamicSystemState_StepFastIterations(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
-- PyObject *resultobj = 0;
-- iODEDynamicSystemState *arg1 = (iODEDynamicSystemState *) 0 ;
-- void *argp1 = 0 ;
-- int res1 = 0 ;
-- PyObject * obj0 = 0 ;
-- int result;
--
-- if(!PyArg_UnpackTuple(args,(char *)"iODEDynamicSystemState_StepFastIterations",1,1,&obj0)) SWIG_fail;
-- res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_iODEDynamicSystemState, 0 | 0 );
-- if (!SWIG_IsOK(res1)) {
-- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "iODEDynamicSystemState_StepFastIterations" "', argument " "1"" of type '" "iODEDynamicSystemState *""'");
-- }
-- arg1 = reinterpret_cast< iODEDynamicSystemState * >(argp1);
-- result = (int)(arg1)->StepFastIterations();
-- resultobj = SWIG_From_int(static_cast< int >(result));
-- return resultobj;
--fail:
-- return NULL;
--}
--
--
- SWIGINTERN PyObject *_wrap_iODEDynamicSystemState_EnableQuickStep(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
- PyObject *resultobj = 0;
- iODEDynamicSystemState *arg1 = (iODEDynamicSystemState *) 0 ;
diff --git a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_12.patch b/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_12.patch
deleted file mode 100644
index 2dfc740..0000000
--- a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_12.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- plugins/cscript/pyivaria/cs_ivaria.cpp 2012-07-13 10:09:06.000000000 +0200
-+++ plugins/cscript/pyivaria/cs_ivaria.cpp 2012-07-13 10:10:54.418053299 +0200
-@@ -40980,10 +40980,6 @@
- { (char *)"iODEDynamicState_GlobalERP", _wrap_iODEDynamicState_GlobalERP, METH_VARARGS, NULL},
- { (char *)"iODEDynamicState_SetGlobalCFM", _wrap_iODEDynamicState_SetGlobalCFM, METH_VARARGS, NULL},
- { (char *)"iODEDynamicState_GlobalCFM", _wrap_iODEDynamicState_GlobalCFM, METH_VARARGS, NULL},
-- { (char *)"iODEDynamicState_EnableStepFast", _wrap_iODEDynamicState_EnableStepFast, METH_VARARGS, NULL},
-- { (char *)"iODEDynamicState_StepFastEnabled", _wrap_iODEDynamicState_StepFastEnabled, METH_VARARGS, NULL},
-- { (char *)"iODEDynamicState_SetStepFastIterations", _wrap_iODEDynamicState_SetStepFastIterations, METH_VARARGS, NULL},
-- { (char *)"iODEDynamicState_StepFastIterations", _wrap_iODEDynamicState_StepFastIterations, METH_VARARGS, NULL},
- { (char *)"iODEDynamicState_EnableQuickStep", _wrap_iODEDynamicState_EnableQuickStep, METH_VARARGS, NULL},
- { (char *)"iODEDynamicState_QuickStepEnabled", _wrap_iODEDynamicState_QuickStepEnabled, METH_VARARGS, NULL},
- { (char *)"iODEDynamicState_SetQuickStepIterations", _wrap_iODEDynamicState_SetQuickStepIterations, METH_VARARGS, NULL},
-@@ -41007,10 +41003,6 @@
- { (char *)"iODEDynamicSystemState_ERP", _wrap_iODEDynamicSystemState_ERP, METH_VARARGS, NULL},
- { (char *)"iODEDynamicSystemState_SetCFM", _wrap_iODEDynamicSystemState_SetCFM, METH_VARARGS, NULL},
- { (char *)"iODEDynamicSystemState_CFM", _wrap_iODEDynamicSystemState_CFM, METH_VARARGS, NULL},
-- { (char *)"iODEDynamicSystemState_EnableStepFast", _wrap_iODEDynamicSystemState_EnableStepFast, METH_VARARGS, NULL},
-- { (char *)"iODEDynamicSystemState_StepFastEnabled", _wrap_iODEDynamicSystemState_StepFastEnabled, METH_VARARGS, NULL},
-- { (char *)"iODEDynamicSystemState_SetStepFastIterations", _wrap_iODEDynamicSystemState_SetStepFastIterations, METH_VARARGS, NULL},
-- { (char *)"iODEDynamicSystemState_StepFastIterations", _wrap_iODEDynamicSystemState_StepFastIterations, METH_VARARGS, NULL},
- { (char *)"iODEDynamicSystemState_EnableQuickStep", _wrap_iODEDynamicSystemState_EnableQuickStep, METH_VARARGS, NULL},
- { (char *)"iODEDynamicSystemState_QuickStepEnabled", _wrap_iODEDynamicSystemState_QuickStepEnabled, METH_VARARGS, NULL},
- { (char *)"iODEDynamicSystemState_SetQuickStepIterations", _wrap_iODEDynamicSystemState_SetQuickStepIterations, METH_VARARGS, NULL},
diff --git a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_13.patch b/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_13.patch
deleted file mode 100644
index 2cea944..0000000
--- a/dev-games/crystalspace/files/crystalspace-2.0-fix_ode_update_13.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- scripts/python/frozen/cspace/ivaria.py 2012-01-14 04:39:47.000000000 +0100
-+++ scripts/python/frozen/cspace/ivaria.py 2012-07-13 10:11:57.391389919 +0200
-@@ -774,10 +774,6 @@
- def GlobalERP(*args): return _ivaria.iODEDynamicState_GlobalERP(*args)
- def SetGlobalCFM(*args): return _ivaria.iODEDynamicState_SetGlobalCFM(*args)
- def GlobalCFM(*args): return _ivaria.iODEDynamicState_GlobalCFM(*args)
-- def EnableStepFast(*args): return _ivaria.iODEDynamicState_EnableStepFast(*args)
-- def StepFastEnabled(*args): return _ivaria.iODEDynamicState_StepFastEnabled(*args)
-- def SetStepFastIterations(*args): return _ivaria.iODEDynamicState_SetStepFastIterations(*args)
-- def StepFastIterations(*args): return _ivaria.iODEDynamicState_StepFastIterations(*args)
- def EnableQuickStep(*args): return _ivaria.iODEDynamicState_EnableQuickStep(*args)
- def QuickStepEnabled(*args): return _ivaria.iODEDynamicState_QuickStepEnabled(*args)
- def SetQuickStepIterations(*args): return _ivaria.iODEDynamicState_SetQuickStepIterations(*args)
-@@ -809,10 +805,6 @@
- def ERP(*args): return _ivaria.iODEDynamicSystemState_ERP(*args)
- def SetCFM(*args): return _ivaria.iODEDynamicSystemState_SetCFM(*args)
- def CFM(*args): return _ivaria.iODEDynamicSystemState_CFM(*args)
-- def EnableStepFast(*args): return _ivaria.iODEDynamicSystemState_EnableStepFast(*args)
-- def StepFastEnabled(*args): return _ivaria.iODEDynamicSystemState_StepFastEnabled(*args)
-- def SetStepFastIterations(*args): return _ivaria.iODEDynamicSystemState_SetStepFastIterations(*args)
-- def StepFastIterations(*args): return _ivaria.iODEDynamicSystemState_StepFastIterations(*args)
- def EnableQuickStep(*args): return _ivaria.iODEDynamicSystemState_EnableQuickStep(*args)
- def QuickStepEnabled(*args): return _ivaria.iODEDynamicSystemState_QuickStepEnabled(*args)
- def SetQuickStepIterations(*args): return _ivaria.iODEDynamicSystemState_SetQuickStepIterations(*args)
diff --git a/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_01.patch b/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_01.patch
deleted file mode 100644
index 4f1504e..0000000
--- a/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_01.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- include/csutil/refarr.h.ori 2012-07-18 16:17:45.460834864 +0200
-+++ include/csutil/refarr.h 2012-07-18 16:18:11.580836231 +0200
-@@ -111,7 +111,7 @@
- {
- CS_ASSERT (this->GetSize () > 0);
- csRef<T> ret = this->Get (this->GetSize () - 1); // see *1*
-- SetSize (this->GetSize () - 1);
-+ this->SetSize (this->GetSize () - 1);
- return ret;
- }
- };
diff --git a/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_02.patch b/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_02.patch
deleted file mode 100644
index 9a371a7..0000000
--- a/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_02.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- include/csutil/blockallocator.h.ori 2012-07-18 16:20:00.460841926 +0200
-+++ include/csutil/blockallocator.h 2012-07-18 17:02:35.940975474 +0200
-@@ -193,7 +193,7 @@
- ~csBlockAllocator()
- {
- ObjectDispose dispose (*this, false);
-- DisposeAll (dispose);
-+ this->DisposeAll (dispose);
- }
-
- /**
-@@ -204,7 +204,7 @@
- void Empty ()
- {
- ObjectDispose dispose (*this, true);
-- FreeAll (dispose);
-+ this->FreeAll (dispose);
- }
-
- /**
-@@ -215,7 +215,7 @@
- void DeleteAll ()
- {
- ObjectDispose dispose (*this, true);
-- DisposeAll (dispose);
-+ this->DisposeAll (dispose);
- }
-
- /**
diff --git a/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_03.patch b/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_03.patch
deleted file mode 100644
index 28c9b5a..0000000
--- a/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_03.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- include/csutil/parray.h.ori 2012-07-18 16:50:17.604270426 +0200
-+++ include/csutil/parray.h 2012-07-18 16:50:52.484272185 +0200
-@@ -112,7 +112,7 @@
- {
- CS_ASSERT (this->GetSize () > 0);
- T* ret = GetAndClear (this->GetSize () - 1); // see *1*
-- Truncate (this->GetSize () - 1);
-+ this->Truncate (this->GetSize () - 1);
- return ret;
- }
-
diff --git a/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_04.patch b/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_04.patch
deleted file mode 100644
index bc76e0c..0000000
--- a/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_04.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- include/csutil/redblacktree.h.ori 2012-07-18 17:23:56.847708962 +0200
-+++ include/csutil/redblacktree.h 2012-07-18 17:26:29.221050599 +0200
-@@ -1155,7 +1155,7 @@
- T* Put (const K& key, const T &value)
- {
- csRedBlackTreePayload<K, T>* payload = (csRedBlackTreePayload<K, T>*)
-- Insert (csRedBlackTreePayload<K, T>(key, value));
-+ this->Insert (csRedBlackTreePayload<K, T>(key, value));
- return (payload != 0) ? &payload->GetValue() : 0;
- }
- /**
-@@ -1194,7 +1194,7 @@
- */
- const T& Get (const K& key, const T& fallback) const
- {
-- const csRedBlackTreePayload<K, T>* payload = Find (key);
-+ const csRedBlackTreePayload<K, T>* payload = this->Find (key);
- if (payload == 0) return fallback;
- return payload->GetValue();
- }
diff --git a/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_05.patch b/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_05.patch
deleted file mode 100644
index 01a1097..0000000
--- a/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_05.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- include/csplugincommon/rendermanager/render.h.ori 2012-07-18 17:26:53.654385262 +0200
-+++ include/csplugincommon/rendermanager/render.h 2012-07-18 17:27:46.111054919 +0200
-@@ -194,7 +194,7 @@
- || (mesh.preCopyNum != 0))
- {
- // Render the latest batch of meshes
-- RenderMeshes (context, node->meshes, lastShader, lastTicket, lastRenderedMesh, m);
-+ this->RenderMeshes (context, node->meshes, lastShader, lastTicket, lastRenderedMesh, m);
- lastRenderedMesh = m;
-
- lastShader = shader;
-@@ -208,7 +208,7 @@
- }
- }
-
-- RenderMeshes (context, node->meshes, lastShader, lastTicket, lastRenderedMesh, node->meshes.GetSize ());
-+ this->RenderMeshes (context, node->meshes, lastShader, lastTicket, lastRenderedMesh, node->meshes.GetSize ());
- }
- };
-
-@@ -242,7 +242,7 @@
- iShader* shader = context.shaderArray[mesh.contextLocalId+layerOffset];
-
- size_t ticket = context.ticketArray[mesh.contextLocalId+layerOffset];
-- RenderMeshes (context, node->meshes, shader, ticket, m, m+1);
-+ this->RenderMeshes (context, node->meshes, shader, ticket, m, m+1);
- }
- }
- }