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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
// ---------------- [ File: character-traits-warrior-capability/src/tech_adaptation_capability.rs ]
crate::ix!();
#[derive(Copy,EnumIter,Debug, Clone, PartialEq, Eq, Hash)]
pub enum WarriorTechAdaptationCapability {
/// Ideal when the warrior consistently excels at rapidly understanding, implementing, and adapting defensive technologies to neutralize evolving threats.
SkilledInTechnologicalDefenseAndAdaptation,
/// Optimal for warriors who systematically enhance their combat effectiveness by swiftly integrating and mastering the latest weapon advancements, maintaining technological superiority.
IntegratesCuttingEdgeWeaponUpgrades,
/// Selected when a warrior frequently customizes or dynamically alters their equipment and technological tools, precisely aligning resources with mission-specific objectives and constraints.
ReconfiguresEquipmentForMissionNeeds,
/// Appropriate for warriors who demonstrate exceptional proficiency in seizing, repurposing, and effectively deploying captured or enemy-developed technology to enhance operational capability.
CommandeersEnemyTechnologyEfficiently,
/// Suited for warriors who rigorously enforce digital discipline, protocols, and cybersecurity practices, continuously safeguarding operational integrity against digital espionage or sabotage.
MaintainsOperationalSecurityInDigitalSpace,
/// Chosen when the warrior rapidly prototypes and deploys innovative tactical technological solutions under tight time constraints, enabling unconventional tactical breakthroughs.
RapidTacticalInnovationAndPrototyping,
/// Ideal for warriors who excel at seamlessly integrating diverse technological systems, ensuring interoperability and optimized performance in complex operational environments.
IntegratesAndOptimizesDiverseTechnologicalSystems,
/// Selected for warriors adept at swiftly adapting technological assets to environmental extremes or hostile operational contexts, ensuring mission success under adverse conditions.
AdaptsTechnologyForExtremeEnvironments,
/// Suited for warriors proficient in quickly diagnosing and repairing complex technological failures mid-operation, ensuring minimal disruption to mission objectives.
RealTimeTechnologicalTroubleshooting,
/// Optimal for warriors who effectively forecast technological trends and preemptively position their resources to maintain strategic technological advantage over adversaries.
StrategicTechnologyForesightAndPositioning,
/// Appropriate for warriors who specialize in embedding stealth and low-signature characteristics into technological systems, enhancing operational concealment and surprise.
ImplementsStealthAndSignatureReductionTechnologies,
/// Ideal for warriors proficient in training allies rapidly on newly adopted or adapted technologies, multiplying force effectiveness in coalition or joint-force contexts.
EfficientTechnologicalKnowledgeTransfer,
}
#[allow(clippy::too_many_lines)]
impl WarriorTechAdaptationCapability {
/// Compute the intrinsic‐dimension ratings that characterize how each
/// `WarriorTechAdaptationCapability` variant differs along the
/// orthogonal capability basis captured by
/// `WarriorCapabilityIntrinsicDimensionRatings`.
#[instrument(level = "trace", skip(self))]
pub fn intrinsic_dimension_ratings(&self) -> WarriorCapabilityIntrinsicDimensionRatings {
use WarriorTechAdaptationCapability::*;
match self {
/* ---------------------------------------------------------------
Excels at adaptive defensive technologies
--------------------------------------------------------------- */
SkilledInTechnologicalDefenseAndAdaptation => {
tracing::trace!(
"computing ratings for SkilledInTechnologicalDefenseAndAdaptation"
);
wc_ratings!(
/* 1‑10 */ 0.00,0.25,0.25,0.25,0.25,0.65,0.00,0.90,0.25,0.50,
/* 11‑20 */ 0.40,0.25,0.60,0.25,0.25,0.25,0.25,0.25,0.25,0.25,
/* 21‑30 */ 0.25,0.25,0.25,0.25,0.60,0.25,0.25,0.25,0.60,0.25,
/* 31‑40 */ 0.25,0.25,0.25,0.25,0.00,0.60,0.60,0.25,0.60,0.25,
/* 41‑50 */ 0.25,0.25,0.25,0.25,0.25,0.70,0.25,0.25,0.25,0.25,
/* 51‑60 */ 0.60,0.60,0.25,0.25,0.70,0.25,0.25,0.55,0.60,0.25,
/* 61‑70 */ 0.70,0.25,0.00,0.00,0.25,0.00,0.00,0.25,0.25,0.00,
/* 71‑80 */ 0.25,0.60,0.00,0.60,0.25,0.25,0.00,0.00,0.25,0.25,
/* 81‑90 */ 0.25,0.25,0.85,0.70,0.80,0.80,0.80,0.75,0.75,0.75,
/* 91‑100 */ 0.25,0.25,0.60,0.30,0.60,0.30,0.30,0.40,0.40,0.30,
/* 101‑115*/ 0.60,0.30,0.30,0.50,0.40,0.40,0.50,0.45,0.60,0.70,
0.60,0.60,0.50,0.40,0.70
)
}
/* ---------------------------------------------------------------
Maintains technological superiority through weapon upgrades
--------------------------------------------------------------- */
IntegratesCuttingEdgeWeaponUpgrades => {
tracing::trace!("computing ratings for IntegratesCuttingEdgeWeaponUpgrades");
wc_ratings!(
0.25,0.25,0.25,0.25,0.50,0.25,0.00,0.90,0.25,0.60,
0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,
0.50,0.25,0.25,0.25,0.60,0.25,0.25,0.25,0.25,0.60,
0.25,0.25,0.25,0.25,0.00,0.25,0.25,0.25,0.25,0.25,
0.25,0.25,0.80,0.80,0.60,0.80,0.25,0.25,0.25,0.25,
0.25,0.25,0.25,0.25,0.60,0.25,0.25,0.25,0.25,0.25,
0.80,0.25,0.00,0.00,0.25,0.00,0.00,0.80,0.70,0.00,
0.25,0.25,0.00,0.40,0.25,0.25,0.00,0.00,0.25,0.25,
0.25,0.25,0.50,0.60,0.60,0.70,0.70,0.60,0.60,0.60,
0.25,0.25,0.60,0.30,0.60,0.30,0.30,0.40,0.40,0.30,
0.60,0.60,0.30,0.50,0.40,0.40,0.50,0.45,0.60,0.70,
0.60,0.60,0.60,0.60,0.60
)
}
/* ---------------------------------------------------------------
Reconfigures equipment to fit mission constraints
--------------------------------------------------------------- */
ReconfiguresEquipmentForMissionNeeds => {
tracing::trace!("computing ratings for ReconfiguresEquipmentForMissionNeeds");
wc_ratings!(
0.25,0.25,0.25,0.25,0.25,0.60,0.00,0.75,0.25,0.50,
0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,
0.25,0.25,0.25,0.25,0.80,0.25,0.25,0.25,0.80,0.25,
0.25,0.25,0.25,0.25,0.00,0.60,0.60,0.25,0.25,0.25,
0.25,0.25,0.25,0.25,0.25,0.70,0.25,0.25,0.25,0.25,
0.60,0.60,0.25,0.25,0.70,0.25,0.25,0.60,0.70,0.80,
0.60,0.25,0.00,0.00,0.25,0.00,0.00,0.25,0.25,0.00,
0.25,0.25,0.00,0.40,0.25,0.25,0.00,0.00,0.25,0.25,
0.25,0.25,0.60,0.70,0.60,0.60,0.60,0.60,0.60,0.70,
0.25,0.25,0.60,0.30,0.60,0.30,0.30,0.40,0.40,0.30,
0.70,0.25,0.25,0.55,0.40,0.40,0.65,0.60,0.80,0.75,
0.60,0.85,0.70,0.75,0.75
)
}
/* ---------------------------------------------------------------
Seizes and repurposes enemy technology
--------------------------------------------------------------- */
CommandeersEnemyTechnologyEfficiently => {
tracing::trace!("computing ratings for CommandeersEnemyTechnologyEfficiently");
wc_ratings!(
0.25,0.25,0.25,0.25,0.25,0.60,0.00,0.85,0.25,0.60,
0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,
0.25,0.70,0.25,0.75,0.90,0.25,0.25,0.75,0.80,0.25,
0.25,0.25,0.25,0.25,0.00,0.60,0.60,0.25,0.60,0.25,
0.25,0.25,0.25,0.25,0.25,0.70,0.25,0.25,0.25,0.25,
0.60,0.60,0.25,0.25,0.70,0.25,0.25,0.55,0.60,0.25,
0.70,0.25,0.00,0.00,0.25,0.00,0.00,0.25,0.25,0.00,
0.25,0.25,0.00,0.40,0.25,0.25,0.00,0.00,0.75,0.70,
0.25,0.25,0.60,0.70,0.70,0.75,0.75,0.70,0.70,0.60,
0.30,0.35,0.60,0.30,0.60,0.30,0.30,0.40,0.40,0.30,
0.60,0.30,0.30,0.55,0.40,0.40,0.60,0.55,0.65,0.70,
0.65,0.65,0.60,0.60,0.60
)
}
/* ---------------------------------------------------------------
Exemplary cyber‑defence & operational security
--------------------------------------------------------------- */
MaintainsOperationalSecurityInDigitalSpace => {
tracing::trace!("computing ratings for MaintainsOperationalSecurityInDigitalSpace");
wc_ratings!(
0.25,0.25,0.25,0.25,0.25,0.60,0.00,0.70,0.25,0.30,
0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,
0.20,0.25,0.25,0.25,0.60,0.20,0.25,0.25,0.25,0.20,
0.25,0.25,0.25,0.25,0.00,0.70,0.70,0.20,0.60,0.25,
0.25,0.25,0.25,0.25,0.25,0.60,0.25,0.25,0.25,0.25,
0.60,0.60,0.25,0.25,0.70,0.25,0.25,0.55,0.70,0.25,
0.60,0.85,0.00,0.00,0.25,0.00,0.00,0.25,0.25,0.00,
0.25,0.25,0.00,0.70,0.25,0.25,0.00,0.00,0.25,0.25,
0.25,0.25,0.90,0.90,0.90,0.85,0.80,0.80,0.90,0.80,
0.25,0.25,0.65,0.30,0.65,0.30,0.30,0.40,0.40,0.30,
0.60,0.30,0.30,0.50,0.40,0.45,0.60,0.55,0.60,0.60,
0.70,0.70,0.60,0.60,0.70
)
}
/* ---------------------------------------------------------------
Rapid tactical innovation & prototyping
--------------------------------------------------------------- */
RapidTacticalInnovationAndPrototyping => {
tracing::trace!("computing ratings for RapidTacticalInnovationAndPrototyping");
wc_ratings!(
0.25,0.25,0.25,0.25,0.25,0.65,0.00,0.85,0.25,0.65,
0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,
0.25,0.25,0.25,0.25,0.80,0.25,0.25,0.25,0.70,0.25,
0.25,0.25,0.25,0.25,0.00,0.70,0.60,0.25,0.60,0.25,
0.25,0.25,0.25,0.25,0.25,0.90,0.25,0.25,0.25,0.25,
0.60,0.65,0.25,0.25,0.70,0.25,0.25,0.75,0.75,0.90,
0.70,0.25,0.00,0.00,0.25,0.00,0.00,1.00,0.70,0.00,
0.25,0.25,0.00,0.60,0.25,0.25,0.00,0.00,0.35,0.25,
0.25,0.25,0.70,0.90,0.85,0.85,0.85,0.80,0.80,0.70,
0.25,0.25,0.65,0.30,0.65,0.30,0.30,0.40,0.40,0.30,
0.80,0.30,0.30,0.55,0.45,0.45,0.65,0.60,0.75,0.90,
0.60,0.70,0.80,0.70,0.70
)
}
/* ---------------------------------------------------------------
Integrates diverse technological systems
--------------------------------------------------------------- */
IntegratesAndOptimizesDiverseTechnologicalSystems => {
tracing::trace!(
"computing ratings for IntegratesAndOptimizesDiverseTechnologicalSystems"
);
wc_ratings!(
0.25,0.25,0.25,0.25,0.25,0.60,0.00,0.90,0.25,0.50,
0.25,0.25,0.25,0.25,0.25,0.25,0.80,0.25,0.25,0.25,
0.25,0.25,0.25,0.25,0.70,0.25,0.25,0.25,0.60,0.25,
0.25,0.25,0.25,0.25,0.00,0.80,0.70,0.25,0.60,0.25,
0.25,0.25,0.25,0.25,0.25,0.70,0.25,0.25,0.25,0.25,
0.60,0.60,0.25,0.25,0.70,0.25,0.25,0.55,0.70,0.25,
0.60,0.25,0.00,0.00,0.25,0.00,0.00,0.25,0.25,0.00,
0.25,0.25,0.00,0.40,0.25,0.25,0.00,0.00,0.25,0.85,
0.25,0.60,0.70,0.70,0.75,0.75,0.75,0.70,0.75,0.60,
0.80,0.25,0.80,0.30,0.70,0.30,0.30,0.40,0.40,0.30,
0.65,0.30,0.30,0.55,0.45,0.45,0.60,0.55,0.85,0.75,
0.70,0.75,0.60,0.60,0.65
)
}
/* ---------------------------------------------------------------
Technology adaptation for extreme environments
--------------------------------------------------------------- */
AdaptsTechnologyForExtremeEnvironments => {
tracing::trace!("computing ratings for AdaptsTechnologyForExtremeEnvironments");
wc_ratings!(
0.25,0.25,0.25,0.25,0.25,0.75,0.00,0.80,0.25,0.50,
0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,
0.25,0.25,0.25,0.25,0.70,0.25,0.25,0.25,0.85,0.25,
0.25,0.25,0.85,0.25,0.00,0.60,0.70,0.25,0.60,0.25,
0.25,0.25,0.25,0.25,0.25,0.60,0.80,0.25,0.70,0.25,
0.70,0.70,0.25,0.25,0.85,0.25,0.25,0.70,0.70,0.25,
0.75,0.25,0.00,0.00,0.25,0.00,0.00,0.25,0.25,0.00,
0.25,0.25,0.00,0.40,0.25,0.25,0.00,0.00,0.25,0.25,
0.25,0.60,0.90,0.60,0.70,0.75,0.70,0.70,0.70,0.75,
0.25,0.25,0.70,0.30,0.65,0.30,0.30,0.50,0.50,0.30,
0.75,0.30,0.30,0.60,0.50,0.50,0.70,0.60,0.70,0.75,
0.90,0.80,0.75,0.90,0.75
)
}
/* ---------------------------------------------------------------
Real‑time technological troubleshooting
--------------------------------------------------------------- */
RealTimeTechnologicalTroubleshooting => {
tracing::trace!("computing ratings for RealTimeTechnologicalTroubleshooting");
wc_ratings!(
0.25,0.25,0.25,0.25,0.25,0.70,0.00,0.80,0.25,0.50,
0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,
0.25,0.25,0.25,0.25,0.85,0.25,0.25,0.25,0.80,0.25,
0.25,0.25,0.25,0.25,0.00,0.60,0.70,0.25,0.70,0.25,
0.25,0.25,0.25,0.25,0.25,0.75,0.25,0.25,0.25,0.25,
0.80,0.80,0.25,0.25,0.80,0.25,0.25,0.70,0.80,0.80,
0.60,0.30,0.00,0.00,0.25,0.00,0.00,0.25,0.25,0.00,
0.25,0.25,0.00,0.50,0.25,0.25,0.00,0.00,0.25,0.25,
0.25,0.70,0.70,0.75,0.70,0.70,0.70,0.70,0.70,0.70,
0.25,0.25,0.65,0.30,0.60,0.30,0.30,0.50,0.50,0.30,
0.85,0.30,0.30,0.55,0.45,0.45,0.70,0.65,0.70,0.80,
0.70,0.80,0.70,0.80,0.80
)
}
/* ---------------------------------------------------------------
Strategic technology foresight & positioning
--------------------------------------------------------------- */
StrategicTechnologyForesightAndPositioning => {
tracing::trace!("computing ratings for StrategicTechnologyForesightAndPositioning");
wc_ratings!(
0.25,0.25,0.90,0.25,0.25,0.60,0.00,0.85,0.25,0.50,
0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,
0.25,0.25,0.25,0.25,0.75,0.25,0.25,0.25,0.60,0.25,
0.25,0.25,0.25,0.25,0.00,0.70,0.70,0.25,0.60,0.25,
0.25,0.25,0.25,0.25,0.25,0.70,0.25,0.25,0.25,0.25,
0.60,0.60,0.25,0.25,0.75,0.25,0.25,0.65,0.80,0.25,
0.70,0.25,0.00,0.00,0.25,0.00,0.00,0.25,0.25,0.00,
0.25,0.25,0.00,0.50,0.25,0.25,0.00,0.00,0.25,0.25,
0.25,0.25,0.75,0.80,0.75,0.75,0.75,0.75,0.75,0.65,
0.25,0.25,0.85,0.30,0.85,0.30,0.30,0.40,0.40,0.30,
0.75,0.30,0.30,0.55,0.45,0.45,0.70,0.60,0.85,0.90,
0.75,0.85,0.65,0.90,0.65
)
}
/* ---------------------------------------------------------------
Stealth & signature reduction technologies
--------------------------------------------------------------- */
ImplementsStealthAndSignatureReductionTechnologies => {
tracing::trace!(
"computing ratings for ImplementsStealthAndSignatureReductionTechnologies"
);
wc_ratings!(
0.25,0.25,0.25,0.25,0.25,0.60,0.00,0.80,0.25,0.50,
0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,0.25,
0.25,0.25,0.25,0.25,0.60,0.25,0.25,0.75,0.60,0.25,
0.25,0.25,0.25,0.25,0.00,0.70,0.75,0.20,0.60,0.25,
0.25,0.25,0.70,0.70,0.60,0.60,0.25,0.25,0.25,0.25,
0.60,0.60,0.25,0.25,0.65,0.25,0.25,0.55,0.75,0.30,
0.60,0.25,0.00,0.00,0.50,0.00,0.00,0.70,0.60,0.85,
0.60,0.70,0.00,0.25,0.25,0.70,0.00,0.00,0.80,0.85,
0.60,0.70,0.70,0.75,0.80,0.70,0.70,0.65,0.70,0.65,
0.25,0.25,0.70,0.30,0.65,0.30,0.30,0.40,0.40,0.30,
0.65,0.30,0.30,0.55,0.45,0.45,0.70,0.60,0.75,0.80,
0.90,0.85,0.70,0.90,0.65
)
}
/* ---------------------------------------------------------------
Rapidly transfers tech knowledge to allies
--------------------------------------------------------------- */
EfficientTechnologicalKnowledgeTransfer => {
tracing::trace!("computing ratings for EfficientTechnologicalKnowledgeTransfer");
wc_ratings!(
0.25,0.25,0.25,0.25,0.25,0.60,0.00,0.75,0.25,0.50,
0.25,0.25,0.25,0.25,0.25,0.80,0.70,0.25,0.25,0.25,
0.25,0.25,0.25,0.25,0.70,0.25,0.25,0.25,0.60,0.25,
0.25,0.25,0.25,0.25,0.00,0.65,0.60,0.25,0.60,0.25,
0.25,0.25,0.25,0.25,0.25,0.60,0.25,0.25,0.25,0.25,
0.60,0.60,0.25,0.25,0.70,0.25,0.25,0.65,0.70,0.25,
0.60,0.25,0.00,0.00,0.25,0.00,0.00,0.25,0.25,0.00,
0.25,0.25,0.00,0.40,0.25,0.25,0.00,0.00,0.25,0.25,
0.25,0.25,0.70,0.60,0.75,0.70,0.70,0.75,0.75,0.70,
0.25,0.90,0.75,0.30,0.70,0.30,0.30,0.50,0.50,0.30,
0.70,0.85,0.85,0.50,0.45,0.45,0.75,0.60,0.75,0.75,
0.75,0.75,0.60,0.75,0.60
)
}
}
}
}