Next opponent goalie values bug.

This commit is contained in:
gyboth 2008-11-06 09:46:53 +00:00
parent dae5dd362e
commit 843db5af40
3 changed files with 13 additions and 4 deletions

View File

@ -214,10 +214,13 @@ finance_get_loan(gint value)
else else
{ {
/** Calculate new interest in a way that the user can't take unfair advantage of new market interest. */ /** Calculate new interest in a way that the user can't take unfair advantage of new market interest. */
current_user.debt_interest = if(current_interest != current_user.debt_interest)
powf((debt_old * powf(1 + current_user.debt_interest, (gfloat)current_user.counters[COUNT_USER_LOAN]) + {
debt_new * powf(1 + current_interest, (gfloat)current_user.counters[COUNT_USER_LOAN])) / (gfloat)current_user.debt, current_user.debt_interest =
1 / (gfloat)current_user.counters[COUNT_USER_LOAN]) - 1; powf((debt_old * powf(1 + current_user.debt_interest, (gfloat)current_user.counters[COUNT_USER_LOAN]) +
debt_new * powf(1 + current_interest, (gfloat)current_user.counters[COUNT_USER_LOAN])) / (gfloat)current_user.debt,
1 / (gfloat)current_user.counters[COUNT_USER_LOAN]) - 1;
}
} }
game_gui_print_message(_("You have %d weeks to pay back your loan."), game_gui_print_message(_("You have %d weeks to pay back your loan."),

View File

@ -114,6 +114,10 @@ game_get_player_contribution(const Player *pl, gint type, gboolean special)
const_float("float_player_team_weight_forward_midfield"), const_float("float_player_team_weight_forward_midfield"),
const_float("float_player_team_weight_forward_attack")}}; const_float("float_player_team_weight_forward_attack")}};
if(pl->cpos == PLAYER_POS_GOALIE)
printf("plgamesk %.1f, weight %.1f\n",
player_get_game_skill(pl, FALSE, special), player_weights[pl->cpos - 1][type - GAME_TEAM_VALUE_DEFEND]);
return player_get_game_skill(pl, FALSE, special) * return player_get_game_skill(pl, FALSE, special) *
player_weights[pl->cpos - 1][type - GAME_TEAM_VALUE_DEFEND]; player_weights[pl->cpos - 1][type - GAME_TEAM_VALUE_DEFEND];
} }

View File

@ -1596,6 +1596,8 @@ treeview_create_next_opponent_values(GtkListStore *ls, const Fixture *fix)
for(i=0;i<4;i++) for(i=0;i<4;i++)
{ {
printf("%d tv %.1f %.1f maxval %.1f maxpip %d\n",
i, team_values[0][i], team_values[1][i], max_values[i], const_int("int_treeview_max_pipes"));
strcpy(buf2, ""); strcpy(buf2, "");
for(j=0;j<(gint)rint((gfloat)const_int("int_treeview_max_pipes") * for(j=0;j<(gint)rint((gfloat)const_int("int_treeview_max_pipes") *
(team_values[fix->teams[0] == current_user.tm][i] / max_values[i]));j++) (team_values[fix->teams[0] == current_user.tm][i] / max_values[i]));j++)