チケット #48306

citizens_convert() not weighting nationalities by the number of citizens

登録: 2023-06-27 18:03 最終更新: 2024-08-26 14:35

報告者:
担当者:
(未割り当て)
チケットの種類:
状況:
オープン
コンポーネント:
マイルストーン:
(未割り当て)
優先度:
5 - 中
重要度:
5 - 中
解決法:
なし
ファイル:
なし

詳細

At least surprisingly, if not erroneously, citizens_convert() converts citizen of a random nationality, not random citizen. The difference this makes is that all nationalities get the same weight, regardless how many citizens there are. If there's 1 citizen on nationality A and 5 citizens of nationality B, the citizen of A has 50% chance of getting converted and each citizen of B has 10% chance of getting converted.

チケットの履歴 (2 件中 2 件表示)

2023-06-27 18:03 更新者: cazfi
  • 新しいチケット "citizens_convert() not weighting nationalities by the number of citizens" が作成されました
2024-08-26 14:35 更新者: None
コメント

I checked on GitHub citizenshand.c, and maybe, instead of making a list of all the foreign nationalities, we're going to go through each citizen one by one using this function called citizens_iterate. As we go through each one, we'll keep a count of how many citizens we've seen so far. Then, we'll generate a random number between 1 and that total count. We'll also keep track of which citizen we're currently looking at, and if the random number matches the number of the citizen we're on, we'll convert that citizen to a new nationality using the citizens_nation_move function. What do you think? (another option is using fc_weighted_rand or something similar)

void citizens_convert(struct city *pcity) {

int total_citizens = 0; struct player_slot *pslot;
fc_assert_ret(pcity);
if (!game.info.citizen_nationality) {
return;
}
if (!citizen_convert_check(pcity)) {
return;
}
if (citizens_nation_foreign(pcity) == 0) {
/* Only our own citizens. */ return;
}
/* Count total citizens */ citizens_iterate(pcity, citizen_slot) {
total_citizens++;
} citizens_iterate_end;
/* Pick a random citizen */ int random_citizen = fc_rand(total_citizens) + 1; int current_citizen = 0;
citizens_iterate(pcity, citizen_slot) {
current_citizen++; if (current_citizen == random_citizen) {
pslot = citizen_slot; break;
}
} citizens_iterate_end;
// rest of the code

}

添付ファイルリスト

添付ファイルはありません

編集

このチケットにコメントを追加するには、ログインが必要です » ログインする