-
-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathGlobalSettingsSetup.xml
More file actions
88 lines (86 loc) · 4.18 KB
/
Copy pathGlobalSettingsSetup.xml
File metadata and controls
88 lines (86 loc) · 4.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?xml version="1.0" encoding="UTF-8"?>
<!--
All the global settings can be setup here.
For documentation look up the CpSettingUtil.lua.
-->
<Settings prefixText="CP_global_setting_">
<SettingSubTitle prefix="true" title="general">
<Setting classType="AIParameterSettingList" name="wageModifier" default="100" unit="4">
<Values>
<Value>0</Value>
<Value>50</Value>
<Value>100</Value>
<Value>250</Value>
<Value>500</Value>
</Values>
</Setting>
<Setting classType="AIParameterSettingList" name="autoRepair" default="70">
<Values>
<Value name="AUTO_REPAIR_DISABLED" >0</Value>
<Value>25</Value>
<Value>70</Value>
<Value>99</Value>
</Values>
<Texts>
<Text>off</Text>
<Text>less_than_25</Text>
<Text>less_than_70</Text>
<Text>always</Text>
</Texts>
</Setting>
<Setting classType="AIParameterSettingList" name="fuelThreshold" min="0" max="100" incremental="5" default="5" unit="4"/>
<Setting classType="AIParameterBooleanSetting" name="waitForRefueling" defaultBool="false" isExpertModeOnly="true"/>
<Setting classType="AIParameterSettingList" name="brokenThreshold" min="0" max="100" incremental="5" default="100" unit="4"/>
<Setting classType="AIParameterBooleanSetting" name="stopThreshingDuringRain" defaultBool="true"/>
<Setting classType="AIParameterSettingList" name="fruitDestruction">
<Values>
<Value name="AI_FRUIT_DESTRUCTION_OFF" >0</Value>
<Value name="AI_FRUIT_DESTRUCTION_ONLY_CP">1</Value>
<Value name="AI_FRUIT_DESTRUCTION_EVERY_HELPER">2</Value>
</Values>
<Texts>
<Text prefix="false">CP_deactivated</Text>
<Text>only_cp</Text>
<Text>all_helpers</Text>
</Texts>
</Setting>
</SettingSubTitle>
<SettingSubTitle prefix="true" title="userSettings">
<!-- When enabled, then a few settings are invisible and return their default values. -->
<Setting classType="AIParameterBooleanSetting" name="expertModeActive" isUserSetting="true" defaultBool="false"/>
<!-- <Setting classType="AIParameterBooleanSetting" name="controllerHudSelected" isUserSetting="true" defaultBool="false" onChangeCallback="onHudSelectionChanged"/> -->
<Setting classType="AIParameterBooleanSetting" name="showsAllActiveCourses" isUserSetting="true" defaultBool="false" isExpertModeOnly="true"/>
<Setting classType="AIParameterBooleanSetting" name="drawOntoTheHudMap" isUserSetting="true" defaultBool="true"/>
<Setting classType="AIParameterBooleanSetting" name="showActionEventHelp" isUserSetting="true" defaultBool="false" onChangeCallback="onActionEventTextVisibilityChanged"/>
<Setting classType="AIParameterSettingList" name="infoTextHudActive" isUserSetting="true" default="1">
<Values>
<Value name="DISABLED">0</Value>
<Value name="ACTIVE">1</Value>
<Value name="ACTIVE_HIDE_HUD_WITHOUT_MESSAGE">2</Value>
</Values>
<Texts>
<Text prefix="false">CP_deactivated</Text>
<Text prefix="false">CP_activated</Text>
<Text>active_hide_without_message</Text>
</Texts>
</Setting>
<Setting classType="AIParameterBooleanSetting" name="infoTextHudPlayerMouseActive" isUserSetting="true" defaultBool="true" isExpertModeOnly="true"/>
<Setting classType="AIParameterBooleanSetting" name="isHudMoveable" isUserSetting="true" defaultBool="true"/>
<Setting classType="AIParameterBooleanSetting" name="isInfoTextHudMoveable" isUserSetting="true" defaultBool="true"/>
<Setting classType="AIParameterBooleanSetting" name="preferCustomFields" isUserSetting="true"/>
<Setting classType="AIParameterSettingList" name="distanceUnit" isUserSetting="true" default="0" onChangeCallback="onDistanceUnitChanged">
<Values>
<Value name="METRIC_UNIT" >0</Value>
<Value name="IMPERIAL_UNIT" >1</Value>
</Values>
<Texts>
<Text>meter</Text>
<Text>imperial</Text>
</Texts>
</Setting>
</SettingSubTitle>
<SettingSubTitle prefix="true" title="pathfinder" isExpertModeOnly="true">
<Setting classType="AIParameterSettingList" name="maxDeltaAngleAtGoalDeg" min="5" max="90" incremental="5" default="45" isExpertModeOnly="true"/>
<Setting classType="AIParameterSettingList" name="deltaAngleRelaxFactorDeg" min="10" max="100" incremental="10" default="10" isExpertModeOnly="true"/>
</SettingSubTitle>
</Settings>