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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
use crate::create_new::CreateNew;
use crate::fillable::{Fillable, Filler};
use crate::SchemaExample;
use df_st_derive::{Fillable, Filler, HashAndPartialEqById};
use juniper::GraphQLObject;
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

/// A notable figure that lived in the world.
/// Not all characters that live in the world are notable.
/// They have to have done or encountered something that made them notable.
#[derive(
    Serialize,
    Deserialize,
    Clone,
    Debug,
    HashAndPartialEqById,
    Fillable,
    Filler,
    Default,
    JsonSchema,
    GraphQLObject,
)]
pub struct HistoricalFigure {
    /// Identifier for the historical figure.
    /// `id` must be unique for the whole world.
    /// This `id` is often referred to as `hf_id`.
    pub id: i32,
    pub name: Option<String>,
    pub race: Option<String>,
    pub race_id: Option<String>, // creature_id
    /// The gender or sex of the figure.
    /// Possible values: female, male, default.
    pub caste: Option<String>, // TODO Change to enum
    pub appeared: Option<i32>,
    pub birth_year: Option<i32>,      // TODO Convert to date
    pub birth_seconds72: Option<i32>, // TODO Convert to date
    pub death_year: Option<i32>,      // TODO Convert to date
    pub death_seconds72: Option<i32>, // TODO Convert to date
    pub associated_type: Option<String>,
    pub entity_link: Vec<HFEntityLink>,
    pub entity_position_link: Vec<HFEntityPositionLink>,
    pub site_link: Vec<HFSiteLink>,
    pub sphere: Vec<String>,
    pub interaction_knowledge: Vec<String>,
    pub deity: Option<String>,
    pub journey_pet: Vec<String>,
    pub goal: Option<String>,
    pub relationship_profile_hf: Vec<HFRelationshipProfileHF>,
    pub intrigue_actor: Vec<HFIntrigueActor>,
    pub intrigue_plot: Vec<HFIntriguePlot>,
    pub ent_pop_id: Option<i32>,
    pub entity_reputation: Vec<HFEntityReputation>,
    pub vague_relationship: Vec<HFVagueRelationship>,
    pub active_interaction: Option<String>,
    pub force: Option<bool>,
    pub current_identity_id: Option<i32>,
    pub entity_squad_link: Vec<HFEntitySquadLink>,
    pub holds_artifact: Option<i32>,
    pub honor_entity: Vec<HFHonorEntity>,
    pub site_property: Vec<HFSiteProperty>,
    pub used_identity_id: Option<i32>,
    pub animated: Option<bool>,
    pub animated_string: Option<String>,
    /// Describes if the HistoricalFigure was played in adventure mode.
    /// ( Since = "0.2.0" )
    pub adventurer: Option<bool>,

    pub skills: Vec<HFSkill>,
    pub links: Vec<HFLink>,
}

#[derive(
    Serialize, Deserialize, Clone, Debug, Fillable, Filler, Default, JsonSchema, GraphQLObject,
)]
pub struct HFEntityLink {
    pub hf_id: i32,
    pub entity_id: i32,
    pub link_type: Option<String>,
    pub link_strength: Option<i32>,
}

#[derive(
    Serialize, Deserialize, Clone, Debug, Fillable, Filler, Default, JsonSchema, GraphQLObject,
)]
pub struct HFEntityPositionLink {
    /// Unique ID for database
    pub id: i32,
    pub hf_id: i32,
    pub entity_id: i32,
    pub position_profile_id: Option<i32>,
    pub start_year: Option<i32>, // TODO Convert to date
    pub end_year: Option<i32>,   // TODO Convert to date
}

#[derive(
    Serialize, Deserialize, Clone, Debug, Fillable, Filler, Default, JsonSchema, GraphQLObject,
)]
pub struct HFSiteLink {
    pub hf_id: i32,
    pub site_id: i32,
    pub link_type: Option<String>,
    pub entity_id: Option<i32>,
    pub occupation_id: Option<i32>,
    pub sub_id: Option<i32>,
}

#[derive(
    Serialize, Deserialize, Clone, Debug, Fillable, Filler, Default, JsonSchema, GraphQLObject,
)]
pub struct HFSkill {
    pub hf_id: i32,
    pub skill: String, // TODO: change to enum
    pub total_ip: Option<i32>,
}

#[derive(
    Serialize, Deserialize, Clone, Debug, Fillable, Filler, Default, JsonSchema, GraphQLObject,
)]
pub struct HFRelationshipProfileHF {
    pub hf_id: i32,
    pub hf_id_other: i32,
    pub visual: bool,
    pub historical: bool,
    pub meet_count: Option<i32>,
    pub last_meet_year: Option<i32>,      // TODO Convert to date
    pub last_meet_seconds72: Option<i32>, // TODO Convert to date
    pub love: Option<i32>,
    pub respect: Option<i32>,
    pub trust: Option<i32>,
    pub loyalty: Option<i32>,
    pub fear: Option<i32>,
    pub known_identity_id: Option<i32>,
    /// The relation with this other HF is characterized as `bonded`.
    /// Value is how well the value fits? Values seem te range `[0-100]`.
    /// ( Since = "0.2.0" )
    pub rep_bonded: Option<i32>,
    /// The relation with this other HF is characterized as `buddy`.
    /// Value is how well the value fits? Values seem te range `[0-100]`.
    /// ( Since = "0.2.0" )
    pub rep_buddy: Option<i32>,
    /// The relation with this other HF is characterized as `flatterer`.
    /// Value is how well the value fits? Values seem te range `[0-100]`.
    /// ( Since = "0.2.0" )
    pub rep_flatterer: Option<i32>,
    /// The relation with this other HF is characterized as `friendly`.
    /// Value is how well the value fits? Values seem te range `[0-100]`.
    /// ( Since = "0.2.0" )
    pub rep_friendly: Option<i32>,
    /// The relation with this other HF is characterized as `grudge`.
    /// Value is how well the value fits? Values seem te range `[0-100]`.
    /// ( Since = "0.2.0" )
    pub rep_grudge: Option<i32>,
    /// The relation with this other HF is characterized as `information source`.
    /// Value is how well the value fits? Values seem te range `[0-100]`.
    /// ( Since = "0.2.0" )
    pub rep_information_source: Option<i32>,
    /// The relation with this other HF is characterized as `killer`.
    /// Value is how well the value fits? Values seem te range `[0-100]`.
    /// ( Since = "0.2.0" )
    pub rep_killer: Option<i32>,
    /// The relation with this other HF is characterized as `murderer`.
    /// Value is how well the value fits? Values seem te range `[0-100]`.
    /// ( Since = "0.2.0" )
    pub rep_murderer: Option<i32>,
    /// The relation with this other HF is characterized as `quarreler`.
    /// Value is how well the value fits? Values seem te range `[0-100]`.
    /// ( Since = "0.2.0" )
    pub rep_quarreler: Option<i32>,
    /// The relation with this other HF is characterized as `violent`.
    /// Value is how well the value fits? Values seem te range `[0-100]`.
    /// ( Since = "0.2.0" )
    pub rep_violent: Option<i32>,
}

#[derive(
    Serialize, Deserialize, Clone, Debug, Fillable, Filler, Default, JsonSchema, GraphQLObject,
)]
pub struct HFIntrigueActor {
    pub hf_id: i32,
    pub local_id: i32,
    pub entity_id: Option<i32>,
    pub hf_id_other: Option<i32>,
    pub role: Option<String>,
    pub strategy: Option<String>,
    pub strategy_en_id: Option<i32>,
    pub strategy_epp_id: Option<i32>,
    pub handle_actor_id: Option<i32>,
    pub promised_actor_immortality: Option<bool>,
    pub promised_me_immortality: Option<bool>,
}

#[derive(
    Serialize, Deserialize, Clone, Debug, Fillable, Filler, Default, JsonSchema, GraphQLObject,
)]
pub struct HFIntriguePlot {
    pub hf_id: i32,
    pub local_id: i32,
    #[serde(rename = "type")]
    pub type_: Option<String>,
    pub on_hold: Option<bool>,
    pub actor_id: Option<i32>,
    pub artifact_id: Option<i32>,
    pub delegated_plot_id: Option<i32>,
    pub delegated_plot_hf_id: Option<i32>,
    pub entity_id: Option<i32>,
    pub plot_actor: Vec<HFPlotActor>,
    pub parent_plot_hf_id: Option<i32>,
    pub parent_plot_id: Option<i32>,
}

#[derive(
    Serialize, Deserialize, Clone, Debug, Fillable, Filler, Default, JsonSchema, GraphQLObject,
)]
pub struct HFPlotActor {
    pub hf_id: i32,
    pub local_id: i32,
    pub actor_id: i32,
    pub plot_role: Option<String>,
    pub agreement_id: Option<i32>,
    pub agreement_has_messenger: Option<bool>,
}

#[derive(
    Serialize, Deserialize, Clone, Debug, Fillable, Filler, Default, JsonSchema, GraphQLObject,
)]
pub struct HFEntityReputation {
    pub hf_id: i32,
    pub entity_id: i32,
    pub first_ageless_year: Option<i32>, // TODO Convert to date
    pub first_ageless_season_count: Option<i32>, // TODO Convert to date
    pub unsolved_murders: Option<i32>,
    /// The HF is known as a `hunter` by the entity.
    /// Value is how well known he/she is known for that??
    /// ( Since = "0.2.0" )
    pub rep_hunter: Option<i32>,
    /// The HF is known as a `killer` by the entity.
    /// Value is how well known he/she is known for that??
    /// ( Since = "0.2.0" )
    pub rep_killer: Option<i32>,
    /// The HF is known as a `knowledge preserver` by the entity.
    /// Value is how well known he/she is known for that??
    /// ( Since = "0.2.0" )
    pub rep_knowledge_preserver: Option<i32>,
    /// The HF is known as a `treasure_hunter` by the entity.
    /// Value is how well known he/she is known for that??
    /// ( Since = "0.2.0" )
    pub rep_treasure_hunter: Option<i32>,
}

#[derive(
    Serialize, Deserialize, Clone, Debug, Fillable, Filler, Default, JsonSchema, GraphQLObject,
)]
pub struct HFVagueRelationship {
    pub hf_id: i32,
    pub hf_id_other: i32,
    pub war_buddy: Option<bool>,
    pub artistic_buddy: Option<bool>,
    pub atheletic_rival: Option<bool>,
    pub athlete_buddy: Option<bool>,
    pub business_rival: Option<bool>,
    pub childhood_friend: Option<bool>,
    pub grudge: Option<bool>,
    pub jealous_obsession: Option<bool>,
    pub jealous_relationship_grudge: Option<bool>,
    pub persecution_grudge: Option<bool>,
    pub religious_persecution_grudge: Option<bool>,
    pub scholar_buddy: Option<bool>,
    pub supernatural_grudge: Option<bool>,
}

#[derive(
    Serialize, Deserialize, Clone, Debug, Fillable, Filler, Default, JsonSchema, GraphQLObject,
)]
pub struct HFEntitySquadLink {
    pub hf_id: i32,
    pub entity_id: i32,
    pub squad_id: i32,
    pub squad_position: Option<i32>,
    pub start_year: Option<i32>, // TODO Convert to date
    /// The year the HF left the squad.
    /// ( Since = "0.2.0" )
    pub end_year: Option<i32>, // TODO Convert to date
}

#[derive(
    Serialize, Deserialize, Clone, Debug, Fillable, Filler, Default, JsonSchema, GraphQLObject,
)]
pub struct HFLink {
    pub hf_id: i32,
    pub hf_id_other: i32,
    pub link_type: Option<String>,
    pub link_strength: Option<i32>,
}

#[derive(
    Serialize, Deserialize, Clone, Debug, Fillable, Filler, Default, JsonSchema, GraphQLObject,
)]
pub struct HFHonorEntity {
    pub hf_id: i32,
    pub entity_id: i32,
    pub battles: Option<i32>,
    pub honor_id: Vec<i32>,
    pub kills: Option<i32>,
}

#[derive(
    Serialize, Deserialize, Clone, Debug, Fillable, Filler, Default, JsonSchema, GraphQLObject,
)]
pub struct HFSiteProperty {
    pub hf_id: i32,
    pub site_id: i32,
    pub property_id: i32,
}

impl CreateNew for HistoricalFigure {
    fn new_by_id(id: i32) -> Self {
        Self {
            id,
            ..Default::default()
        }
    }
}

impl SchemaExample for HistoricalFigure {
    fn example() -> Self {
        Self::default()
    }
}

impl SchemaExample for HFEntityLink {
    fn example() -> Self {
        Self::default()
    }
}

impl SchemaExample for HFEntityPositionLink {
    fn example() -> Self {
        Self::default()
    }
}

impl SchemaExample for HFSiteLink {
    fn example() -> Self {
        Self::default()
    }
}

impl SchemaExample for HFSkill {
    fn example() -> Self {
        Self::default()
    }
}

impl SchemaExample for HFRelationshipProfileHF {
    fn example() -> Self {
        Self::default()
    }
}

impl SchemaExample for HFIntrigueActor {
    fn example() -> Self {
        Self::default()
    }
}

impl SchemaExample for HFIntriguePlot {
    fn example() -> Self {
        Self::default()
    }
}

impl SchemaExample for HFPlotActor {
    fn example() -> Self {
        Self::default()
    }
}

impl SchemaExample for HFEntityReputation {
    fn example() -> Self {
        Self::default()
    }
}

impl SchemaExample for HFVagueRelationship {
    fn example() -> Self {
        Self::default()
    }
}

impl SchemaExample for HFEntitySquadLink {
    fn example() -> Self {
        Self::default()
    }
}

impl SchemaExample for HFLink {
    fn example() -> Self {
        Self::default()
    }
}

impl SchemaExample for HFHonorEntity {
    fn example() -> Self {
        Self::default()
    }
}

impl SchemaExample for HFSiteProperty {
    fn example() -> Self {
        Self::default()
    }
}

impl PartialEq for HFEntityLink {
    fn eq(&self, other: &Self) -> bool {
        self.hf_id == other.hf_id && self.entity_id == other.entity_id
    }
}

impl std::hash::Hash for HFEntityLink {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.hf_id.hash(state);
        self.entity_id.hash(state);
    }
}

impl PartialEq for HFEntityPositionLink {
    fn eq(&self, other: &Self) -> bool {
        self.hf_id == other.hf_id && self.entity_id == other.entity_id
    }
}

impl std::hash::Hash for HFEntityPositionLink {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.hf_id.hash(state);
        self.entity_id.hash(state);
    }
}

impl PartialEq for HFSiteLink {
    fn eq(&self, other: &Self) -> bool {
        self.hf_id == other.hf_id && self.site_id == other.site_id && self.sub_id == other.sub_id
    }
}

impl std::hash::Hash for HFSiteLink {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.hf_id.hash(state);
        self.site_id.hash(state);
        self.sub_id.hash(state);
    }
}

impl PartialEq for HFSkill {
    fn eq(&self, other: &Self) -> bool {
        self.hf_id == other.hf_id && self.skill == other.skill
    }
}

impl std::hash::Hash for HFSkill {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.hf_id.hash(state);
        self.skill.hash(state);
    }
}

impl PartialEq for HFRelationshipProfileHF {
    fn eq(&self, other: &Self) -> bool {
        self.hf_id == other.hf_id && self.hf_id_other == other.hf_id_other
    }
}

impl std::hash::Hash for HFRelationshipProfileHF {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.hf_id.hash(state);
        self.hf_id_other.hash(state);
    }
}

impl PartialEq for HFIntrigueActor {
    fn eq(&self, other: &Self) -> bool {
        self.hf_id == other.hf_id && self.local_id == other.local_id
    }
}

impl std::hash::Hash for HFIntrigueActor {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.hf_id.hash(state);
        self.local_id.hash(state);
    }
}

impl PartialEq for HFIntriguePlot {
    fn eq(&self, other: &Self) -> bool {
        self.hf_id == other.hf_id && self.local_id == other.local_id
    }
}

impl std::hash::Hash for HFIntriguePlot {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.hf_id.hash(state);
        self.local_id.hash(state);
    }
}

impl PartialEq for HFPlotActor {
    fn eq(&self, other: &Self) -> bool {
        self.hf_id == other.hf_id
            && self.local_id == other.local_id
            && self.actor_id == other.actor_id
    }
}

impl std::hash::Hash for HFPlotActor {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.hf_id.hash(state);
        self.local_id.hash(state);
        self.actor_id.hash(state);
    }
}

impl PartialEq for HFEntityReputation {
    fn eq(&self, other: &Self) -> bool {
        self.hf_id == other.hf_id && self.entity_id == other.entity_id
    }
}

impl std::hash::Hash for HFEntityReputation {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.hf_id.hash(state);
        self.entity_id.hash(state);
    }
}

impl PartialEq for HFVagueRelationship {
    fn eq(&self, other: &Self) -> bool {
        self.hf_id == other.hf_id && self.hf_id_other == other.hf_id_other
    }
}

impl std::hash::Hash for HFVagueRelationship {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.hf_id.hash(state);
        self.hf_id_other.hash(state);
    }
}

impl PartialEq for HFEntitySquadLink {
    fn eq(&self, other: &Self) -> bool {
        self.hf_id == other.hf_id
            && self.entity_id == other.entity_id
            && self.squad_id == other.squad_id
    }
}

impl std::hash::Hash for HFEntitySquadLink {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.hf_id.hash(state);
        self.entity_id.hash(state);
        self.squad_id.hash(state);
    }
}

impl PartialEq for HFLink {
    fn eq(&self, other: &Self) -> bool {
        self.hf_id == other.hf_id && self.hf_id_other == other.hf_id_other
    }
}

impl std::hash::Hash for HFLink {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.hf_id.hash(state);
        self.hf_id_other.hash(state);
    }
}

impl PartialEq for HFHonorEntity {
    fn eq(&self, other: &Self) -> bool {
        self.hf_id == other.hf_id && self.entity_id == other.entity_id
    }
}

impl std::hash::Hash for HFHonorEntity {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.hf_id.hash(state);
        self.entity_id.hash(state);
    }
}

impl PartialEq for HFSiteProperty {
    fn eq(&self, other: &Self) -> bool {
        self.hf_id == other.hf_id
            && self.site_id == other.site_id
            && self.property_id == other.property_id
    }
}

impl std::hash::Hash for HFSiteProperty {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        self.hf_id.hash(state);
        self.site_id.hash(state);
        self.property_id.hash(state);
    }
}