-1

所以在我的模拟器中,我试图更准确地控制一个生物在被创造时的性别机会。最初我每个人使用 RND 的机会只有 50%,但是我意识到这会在以后引起问题。因此,我在考虑每次制作一个生物并决定性别时,我可以根据当前的比例更改/调整每种性别的百分比机会,例如,当当前人口为 70% 男性和 30% 女性时。所以可以让下一个生物有 70% 的机会是女性,并这样做。我的问题是我正在努力寻找实现这一点的好方法,以下是一些信息:

    public void setGender2() {
        int fper = gcount.get(ctype+Gender.F); int mper = gcount.get(ctype+Gender.M);
        int tcc = fper + fper;
        int gmf = rNum(0,100); //Calls the random number method.
        if (fper == mper) { //When first used the total will be 0 so do this.
            gchance = 50;
            if (gmf <= gchance) g = Gender.F; //If the random number is less than the calculated gchance %.
            else g = Gender.M;
        }
        else {
            gchance = (int)(100-(((double)gcount.get(ctype+g)/(double)tcc)*100)); //Calculates the % for a gender.
            if (fper < mper) { //When there is less females...
                if (gmf <= gchance) g = Gender.F;
                else if (gmf > gchance) g = Gender.M;
            }
            else if (mper < fper) { //When there is less males...
                if (gmf <= gchance) g = Gender.M;
                else if (gmf > gchance) g = Gender.F;
            }
        }

        gcount.replace(ctype+g, gcount.get(ctype+g)+1); //update the count for this creature type + gender.
}

性别信息存储在名为 gcount 的 HashMap 中。每个生物类型和性别都是一个键,例如 Fish (ctype) + Gender - 然后是一个与其一起存储的值,该值由底部的替换命令更改。

事情以这种方式实现它看起来非常......不整洁,所以希望其他人有一些更好的建议......?

谢谢。

4

2 回答 2

0

所以剩下的唯一问题是如何最好地应用我从中获得的机会/百分比来确定选择哪种性别。目前我唯一能想到的是:

int rgen = rNum(0,100) //(random number between 1 and 100).
if (chanceMale > chanceFemale) {
    if (rgen < chanceMale) g = Gender.M
    else g = Gender.F
}
else if (chanceFemale > chanceMale) {
    if (rgen < chanceFemale) g = Gender.F
    else g = Gender.M
}
//Only issue is when rgen is equal to chanceMale/Female.

如果有一个更好的方法来做到这一点,有什么建议......?

于 2015-03-18T14:29:19.447 回答
0

我会尝试这样的事情......

int males = 2;  // <- your map value here
int females = 1;  // <- your map value here

int total = males + females;

double chanceMale = .5;

if (total > 0) {

    chanceMale = females / (double)total;

} 

然后简单地将您的随机数与 chanceMale * 100 进行比较,以确定它是否是男性(否则为女性)。

于 2015-03-18T10:25:21.527 回答