Changed: Set max map scale from client cfg
--HG-- branch : develop
This commit is contained in:
parent
b1f1e081a7
commit
aa612e3799
5 changed files with 18 additions and 5 deletions
|
@ -315,6 +315,10 @@ CameraSpeedMin = 2.0;
|
|||
CameraSpeedMax = 100.0;
|
||||
CameraResetSpeed = 10.0; // Speed in radian/s
|
||||
|
||||
// Default values for map
|
||||
MaxMapScale = 2.0f;
|
||||
R2EDMaxMapScale = 8.0f;
|
||||
|
||||
//////////////////
|
||||
// SOUND CONFIG //
|
||||
//////////////////
|
||||
|
|
|
@ -316,9 +316,7 @@
|
|||
selection_axis_color = "0 0 0 127"
|
||||
|
||||
compass="ui:interface:compass"
|
||||
scale_max="2"
|
||||
scale_max_r2="8"
|
||||
/>
|
||||
/>
|
||||
<!-- border around the map -->
|
||||
|
||||
</group>
|
||||
|
@ -409,8 +407,7 @@
|
|||
|
||||
player_pos_tex="player_pos.tga"
|
||||
|
||||
scale_max="2"
|
||||
/>
|
||||
/>
|
||||
<!-- border around the map -->
|
||||
|
||||
</group>
|
||||
|
|
|
@ -603,6 +603,9 @@ CClientConfig::CClientConfig()
|
|||
CameraSpeedMax = 1.0f;
|
||||
CameraResetSpeed = 2.0f;
|
||||
|
||||
MaxMapScale = 2.0f;
|
||||
R2EDMaxMapScale = 8.0f;
|
||||
|
||||
// VERBOSES
|
||||
VerboseVP = false;
|
||||
VerboseAnimUser = false;
|
||||
|
@ -1466,6 +1469,9 @@ void CClientConfig::setValues()
|
|||
READ_FLOAT_FV(CameraDistance)
|
||||
}
|
||||
|
||||
// Default values for CGroupMap
|
||||
READ_FLOAT_FV(MaxMapScale);
|
||||
READ_FLOAT_FV(R2EDMaxMapScale);
|
||||
|
||||
/////////////
|
||||
// SHADOWS //
|
||||
|
|
|
@ -591,6 +591,10 @@ struct CClientConfig
|
|||
float CameraSpeedMax;
|
||||
float CameraResetSpeed;
|
||||
|
||||
// Default values for CGroupMap
|
||||
float MaxMapScale;
|
||||
float R2EDMaxMapScale;
|
||||
|
||||
//////////////
|
||||
// VERBOSES //
|
||||
bool VerboseVP;
|
||||
|
|
|
@ -711,9 +711,11 @@ bool CGroupMap::parse(xmlNodePtr cur, CInterfaceGroup * parentGroup)
|
|||
}
|
||||
|
||||
//
|
||||
_ScaleMax = ClientCfg.MaxMapScale;
|
||||
ptr = (char*) xmlGetProp( cur, (xmlChar*)"scale_max" );
|
||||
if (ptr) fromString((const char *) ptr, _ScaleMax);
|
||||
//
|
||||
_ScaleMaxR2 = ClientCfg.R2EDMaxMapScale;
|
||||
ptr = (char*) xmlGetProp( cur, (xmlChar*)"scale_max_r2" );
|
||||
if (ptr) fromString((const char *) ptr, _ScaleMaxR2);
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue