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
/*!
# RPG Stat library
[](https://docs.rs/rpg-stat)
[](https://crates.io/crates/rpg-stat)
Cargo.toml
Versioning numbering was changed to `year.month.day` format
`rpg_stat="2021.12"`
## Only SPECIFIC stats are supported for FLTK
This is due to limitations of abstraction, namely Vectors and primitives being practically the same as a generic type
FLTK uses `f64` so the `rpg_stat::stats::Stats` implements [fltk-form](https://crates.io/crates/fltk-form)
# Stats
The Stats are broken down into categories `Basic`, `Normal`, and `Advanced`
`Basic` contains only the most needed for a generic game
Your file needs:
`use rpg_stat::stats::Basic as Stats`
* id
* xp
* xp_next
* level
* gp
* hp
* mp
* hp_max
* mp_max
* speed
`Normal` includes a few more for the generic RPG battle system as well as everything in `Basic`
Your file needs:
`use rpg_stat::stats::Normal as Stats`
* atk
* def
* m_atk
* m_def
`Advanced` contains the finer details seen in tabletop RPG stats as well as everything in `Normal` and `Basic`
Your file needs:
`use rpg_stat::stats::Advanced as Stats`
* agility
* strength
* dexterity
* constitution
* intelligence
* charisma
* wisdom
* age
You can easily **ANY** of build these to populate however you like:
```
// choose Normal or Basic if you'd rather...
use rpg_stat::stats::Advanced as Stats;
let stats:Stats<f64> = Stats::empty::<f64>();
```
## Serde + TOML/INI
Yes you can use serde with any of the assets/characters/ files provided. You can use them in your custom structs.
## Custom toml/ini with serde
```
use serde::{Deserialize, Serialize};
use rpg_stat::attributes::{Effectiveness, Value};
use rpg_stat::class::Basic as Class;
use rpg_stat::stats::Basic as Stats;
// example program
const INI_FILE:&str = r#"name="test"
class="Hero"
effectiveness="None"
image="/path/to/file"
[stats]
id = 1
hp = 10
mp = 10
xp = 10
level = 1
hp_max = 10
mp_max = 10
xp_next = 10
gp = 10
speed = 10
atk = 10
def = 10
m_atk = 10
m_def = 10
agi = 10
str = 10
int = 10
dex = 10
con = 10
char = 10
wis = 10
age = 10"#;
#[derive(Clone, PartialEq, Debug, Serialize, Deserialize)]
pub struct OccasionalEnemy {
pub name:String,
pub image:String,
pub stats:Stats<f64>,
pub effectiveness:Effectiveness,
pub class:Class,
}
let decoded: OccasionalEnemy = toml::from_str(INI_FILE).unwrap();
assert_eq!(decoded.stats.hp, 10.0);
assert_eq!(decoded.effectiveness, Effectiveness::None);
// Value trait used here:
assert_eq!(0.0, Effectiveness::None.value(decoded.stats.hp));
assert_eq!(decoded.name, String::from("test"));
assert_eq!(decoded.class.to_string(), String::from("Hero"));
```
## Builder
Since the 1.X version `rpg-stat` has come with a `Builder` trait.
The builder trait is being implemented for all the enumerations like the `rpg_stat::class::*` as well as `rpg_stat::creature::*`
This allows you to do:
```
// feel free to use `Normal` or `Advanced` instead of `Basic`
use rpg_stat::stats::Basic as Stats;
use rpg_stat::class::Basic as Class;
// this is the thing we need!
use rpg_stat::stats::Builder;
// get Hero stats for our program
fn hero_stats () -> Stats<f64> {
// make the hero enum
let hero:Class = Class::Hero;
// this number only matters if you want
let id:f64 = 0.0;
// this effects the stats returned
let level:f64 = 1.0;
// use the basic `Builder`
let hero_stats:Stats<f64> = hero.build_basic(id, level);
// that was easy!
hero_stats
}
// TODO make them meet...
```
## Build your own!
If you are not into making stats from things I made, you can implement your own builder:
```toml
num = "0.2"
rpg-stat = "4.0"
toml = "0.5"
```
# Classes
The Classes are broken down into categories `Basic`, `Normal`, and `Advanced`
The `Basic` class is either `Hero` or `Enemy`
Your file needs:
`use rpg_stat::class::Basic as Class`
The `Normal` class includes a range of character classes for a battle game.
Your file needs:
`use rpg_stat::class::Normal as Class`
`Advanced` includes more characters for a game with interactive roles, not simply a game of battle.
Your file needs:
`use rpg_stat::class::Advanced as Class`
The stat `Builder` is implemented for all the classes and can be used easily:
```
use rpg_stat::stats::Normal as Stats;
use rpg_stat::class::Normal as Class;
// *Use this*
use rpg_stat::stats::Builder;
// get Hero stats for our program
fn hero_stats () -> Stats<f64> {
// make the hero enum
let hero:Class = Class::Alchemist;
// this number only matters if you want
let id:f64 = 0.0;
// this effects the stats returned
let level:f64 = 1.0;
// use the basic `Builder`
let hero_stats:Stats<f64> = hero.build_normal(id, level);
// that was easy!
hero_stats
}
```
# Creatures
# Types
This includes various enums related to the type of character you have
`use rpg_stat::types::Basic as Type`
* `Basic` is the basic type `Good` or `Bad`
* `Normal` has elemental types
* `Advanced` has elemental types
## Compare
The Compare trait is implemented for `Normal`
according to this chart:
```
use rpg_stat::types::Normal as Type;
// to check effectiveness
use rpg_stat::types::Compare;
// need effectiveness too!
use rpg_stat::attributes::Effectiveness;
let rock = Type::Rock;
let wind = Type::Wind;
assert_eq!(rock.effectiveness(wind), Effectiveness::None);
assert_eq!(wind.effectiveness(rock), Effectiveness::Double);
```
# Special
These are names of `Special` moves.
```
use rpg_stat::special::Normal as Special;
let grind:Special = Special::Grind;
```
# Effect
This composes the various Effects in-game related to a character's Stats
# Attributes
These are definitions of abstract terms into code
## Rate
Rate of occurance
```
use rpg_stat::attributes::Rate;
let yes:Rate = Rate::Always;
assert_eq!(yes.worked(), true);
let no:Rate = Rate::None;
assert_eq!(no.worked(), false);
let hmmm:Rate = Rate::Some;
// who knows....
```
## Effectiveness
This effectiveness can be stored in a struct and you could implement a wrapper for `value(T)`:
```
use rpg_stat::attributes::{Effectiveness, Value};
pub struct Item {
pub name:String,
pub amount:i32,
pub effectiveness:Effectiveness,
}
impl Item {
// much easier to use now!
pub fn value(&self) -> i32 {
self.effectiveness.value(self.amount)
}
}
```
```
use rpg_stat::attributes::{Effectiveness, Value};
let hp:i32 = 50;
// later on we use an item and check the effectiveness of it
assert_eq!(Effectiveness::Half.value(hp), 25);
```
## Stage
```
use rpg_stat::attributes::Stage;
```
This includes the `Stage` of life. This is similar to things like "evolution" in creature raising games, but based on reality. In real life no creature evolves randomly in front of someone, however they do get older and change their "form". There are eight forms:
* Baby
* Toddler
* Kid
* Teen
* Young
* Grown
* Older
* Old
# Body
This is to collect all the information about armor, stats, status, etc, based on each body part. This will be some serious numeric control over the simulation.
# RPG Stat command line tool
WIP
Ideally, this will use `clap` and support some very specific stat traits only.
AFAIK the interface will end up looking like:
`rpg_stat class normal Archer stat normal hp`
That said none of the work has been started yet, and I am open to input.
*/