OSDN Git Service

[Add] @return を不要に書き込んだことによる警告をひとまず置換で修正.
[hengbandforosx/hengbandosx.git] / src / birth / birth-body-spec.cpp
1 #include "birth/birth-body-spec.h"
2 #include "player/player-personality-types.h"
3 #include "player/player-race-types.h"
4 #include "player/player-race.h"
5 #include "player/player-sex.h"
6 #include "system/player-type-definition.h"
7
8 /*!
9  * @brief プレイヤーの身長体重を決める / Get character's height and weight
10  */
11 void get_height_weight(player_type *creature_ptr)
12 {
13     int deviation;
14     switch (creature_ptr->psex) {
15     case SEX_MALE:
16         creature_ptr->ht = randnor(rp_ptr->m_b_ht, rp_ptr->m_m_ht);
17         deviation = (int)(creature_ptr->ht) * 100 / (int)(rp_ptr->m_b_ht);
18         creature_ptr->wt = randnor((int)(rp_ptr->m_b_wt) * deviation / 100, (int)(rp_ptr->m_m_wt) * deviation / 300);
19         return;
20     case SEX_FEMALE:
21         creature_ptr->ht = randnor(rp_ptr->f_b_ht, rp_ptr->f_m_ht);
22         deviation = (int)(creature_ptr->ht) * 100 / (int)(rp_ptr->f_b_ht);
23         creature_ptr->wt = randnor((int)(rp_ptr->f_b_wt) * deviation / 100, (int)(rp_ptr->f_m_wt) * deviation / 300);
24     default:
25         return;
26     }
27 }
28
29 /*!
30  * @brief プレイヤーの年齢を決める。 / Computes character's age, height, and weight by henkma
31  * @details 内部でget_height_weight()も呼び出している。
32  */
33 void get_ahw(player_type *creature_ptr)
34 {
35     creature_ptr->age = rp_ptr->b_age + randint1(rp_ptr->m_age);
36     get_height_weight(creature_ptr);
37 }
38
39 /*!
40  * @brief プレイヤーの初期所持金を決める。 / Get the player's starting money
41  * @param creature_ptr プレーヤーへの参照ポインタ
42  */
43 void get_money(player_type *creature_ptr)
44 {
45     int gold = (creature_ptr->sc * 6) + randint1(100) + 300;
46     if (creature_ptr->pclass == CLASS_TOURIST)
47         gold += 2000;
48
49     for (int i = 0; i < A_MAX; i++) {
50         if (creature_ptr->stat_max[i] >= 18 + 50)
51             gold -= 300;
52         else if (creature_ptr->stat_max[i] >= 18 + 20)
53             gold -= 200;
54         else if (creature_ptr->stat_max[i] > 18)
55             gold -= 150;
56         else
57             gold -= (creature_ptr->stat_max[i] - 8) * 10;
58     }
59
60     const int minimum_deposit = 100;
61     if (gold < minimum_deposit)
62         gold = minimum_deposit;
63
64     if (creature_ptr->pseikaku == PERSONALITY_LAZY)
65         gold /= 2;
66     else if (creature_ptr->pseikaku == PERSONALITY_MUNCHKIN)
67         gold = 10000000;
68     if (creature_ptr->prace == RACE_ANDROID)
69         gold /= 5;
70
71     creature_ptr->au = gold;
72 }