mirror of https://github.com/OpenTTD/OpenTTD
(svn r3607) - Fix indenting of PerformanceRatingDetailWndProc()
parent
9936e39924
commit
1f177c6306
312
graph_gui.c
312
graph_gui.c
|
@ -883,176 +883,178 @@ void ShowCompanyLeagueTable(void)
|
||||||
static void PerformanceRatingDetailWndProc(Window *w, WindowEvent *e)
|
static void PerformanceRatingDetailWndProc(Window *w, WindowEvent *e)
|
||||||
{
|
{
|
||||||
switch (e->event) {
|
switch (e->event) {
|
||||||
case WE_PAINT: {
|
case WE_PAINT: {
|
||||||
int val, needed, score, i;
|
int val, needed, score, i;
|
||||||
byte owner, x;
|
byte owner, x;
|
||||||
uint16 y=14;
|
uint16 y=14;
|
||||||
int total_score = 0;
|
int total_score = 0;
|
||||||
int color_done, color_notdone;
|
int color_done, color_notdone;
|
||||||
|
|
||||||
// Draw standard stuff
|
// Draw standard stuff
|
||||||
DrawWindowWidgets(w);
|
DrawWindowWidgets(w);
|
||||||
|
|
||||||
// The player of which we check the detail performance rating
|
// The player of which we check the detail performance rating
|
||||||
owner = FindFirstBit(w->click_state) - 13;
|
owner = FindFirstBit(w->click_state) - 13;
|
||||||
|
|
||||||
// Paint the player icons
|
// Paint the player icons
|
||||||
for (i=0;i<MAX_PLAYERS;i++) {
|
for (i=0;i<MAX_PLAYERS;i++) {
|
||||||
if (!GetPlayer(i)->is_active) {
|
if (!GetPlayer(i)->is_active) {
|
||||||
// Check if we have the player as an active player
|
// Check if we have the player as an active player
|
||||||
if (!(w->disabled_state & (1 << (i+13)))) {
|
if (!(w->disabled_state & (1 << (i+13)))) {
|
||||||
// Bah, player gone :(
|
// Bah, player gone :(
|
||||||
w->disabled_state += 1 << (i+13);
|
w->disabled_state += 1 << (i+13);
|
||||||
// Is this player selected? If so, select first player (always save? :s)
|
// Is this player selected? If so, select first player (always save? :s)
|
||||||
if (w->click_state == 1U << (i + 13))
|
if (w->click_state == 1U << (i + 13))
|
||||||
w->click_state = 1 << 13;
|
w->click_state = 1 << 13;
|
||||||
// We need a repaint
|
// We need a repaint
|
||||||
SetWindowDirty(w);
|
SetWindowDirty(w);
|
||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if we have the player marked as inactive
|
// Check if we have the player marked as inactive
|
||||||
if ((w->disabled_state & (1 << (i+13)))) {
|
if ((w->disabled_state & (1 << (i+13)))) {
|
||||||
// New player! Yippie :p
|
// New player! Yippie :p
|
||||||
w->disabled_state -= 1 << (i+13);
|
w->disabled_state -= 1 << (i+13);
|
||||||
// We need a repaint
|
// We need a repaint
|
||||||
SetWindowDirty(w);
|
SetWindowDirty(w);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (i == owner) x = 1; else x = 0;
|
if (i == owner) x = 1; else x = 0;
|
||||||
DrawPlayerIcon(i, i * 37 + 13 + x, 16 + x);
|
DrawPlayerIcon(i, i * 37 + 13 + x, 16 + x);
|
||||||
|
}
|
||||||
|
|
||||||
|
// The colors used to show how the progress is going
|
||||||
|
color_done = _color_list[6].window_color_1b;
|
||||||
|
color_notdone = _color_list[4].window_color_1b;
|
||||||
|
|
||||||
|
// Draw all the score parts
|
||||||
|
for (i=0;i<NUM_SCORE;i++) {
|
||||||
|
y += 20;
|
||||||
|
val = _score_part[owner][i];
|
||||||
|
needed = _score_info[i].needed;
|
||||||
|
score = _score_info[i].score;
|
||||||
|
// SCORE_TOTAL has his own rulez ;)
|
||||||
|
if (i == SCORE_TOTAL) {
|
||||||
|
needed = total_score;
|
||||||
|
score = SCORE_MAX;
|
||||||
|
} else {
|
||||||
|
total_score += score;
|
||||||
|
}
|
||||||
|
|
||||||
|
DrawString(7, y, STR_PERFORMANCE_DETAIL_VEHICLES + i, 0);
|
||||||
|
|
||||||
|
// Draw the score
|
||||||
|
SetDParam(0, score);
|
||||||
|
DrawStringRightAligned(107, y, SET_PERFORMANCE_DETAIL_INT, 0);
|
||||||
|
|
||||||
|
// Calculate the %-bar
|
||||||
|
if (val > needed) x = 50;
|
||||||
|
else if (val == 0) x = 0;
|
||||||
|
else x = ((val * 50) / needed);
|
||||||
|
|
||||||
|
// SCORE_LOAN is inversed
|
||||||
|
if (val < 0 && i == SCORE_LOAN)
|
||||||
|
x = 0;
|
||||||
|
|
||||||
|
// Draw the bar
|
||||||
|
if (x != 0)
|
||||||
|
GfxFillRect(112, y-2, x + 112, y+10, color_done);
|
||||||
|
if (x != 50)
|
||||||
|
GfxFillRect(x + 112, y-2, 50 + 112, y+10, color_notdone);
|
||||||
|
|
||||||
|
// Calculate the %
|
||||||
|
if (val > needed) x = 100;
|
||||||
|
else x = ((val * 100) / needed);
|
||||||
|
|
||||||
|
// SCORE_LOAN is inversed
|
||||||
|
if (val < 0 && i == SCORE_LOAN)
|
||||||
|
x = 0;
|
||||||
|
|
||||||
|
// Draw it
|
||||||
|
SetDParam(0, x);
|
||||||
|
DrawStringCentered(137, y, STR_PERFORMANCE_DETAIL_PERCENT, 0);
|
||||||
|
|
||||||
|
// SCORE_LOAN is inversed
|
||||||
|
if (i == SCORE_LOAN)
|
||||||
|
val = needed - val;
|
||||||
|
|
||||||
|
// Draw the amount we have against what is needed
|
||||||
|
// For some of them it is in currency format
|
||||||
|
SetDParam(0, val);
|
||||||
|
SetDParam(1, needed);
|
||||||
|
switch (i) {
|
||||||
|
case SCORE_MIN_PROFIT:
|
||||||
|
case SCORE_MIN_INCOME:
|
||||||
|
case SCORE_MAX_INCOME:
|
||||||
|
case SCORE_MONEY:
|
||||||
|
case SCORE_LOAN:
|
||||||
|
DrawString(167, y, STR_PERFORMANCE_DETAIL_AMOUNT_CURRENCY, 0);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
DrawString(167, y, STR_PERFORMANCE_DETAIL_AMOUNT_INT, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// The colors used to show how the progress is going
|
case WE_CLICK:
|
||||||
color_done = _color_list[6].window_color_1b;
|
// Check which button is clicked
|
||||||
color_notdone = _color_list[4].window_color_1b;
|
if (IS_INT_INSIDE(e->click.widget, 13, 21)) {
|
||||||
|
// Is it no on disable?
|
||||||
// Draw all the score parts
|
if ((w->disabled_state & (1 << e->click.widget)) == 0) {
|
||||||
for (i=0;i<NUM_SCORE;i++) {
|
w->click_state = 1 << e->click.widget;
|
||||||
y += 20;
|
SetWindowDirty(w);
|
||||||
val = _score_part[owner][i];
|
}
|
||||||
needed = _score_info[i].needed;
|
|
||||||
score = _score_info[i].score;
|
|
||||||
// SCORE_TOTAL has his own rulez ;)
|
|
||||||
if (i == SCORE_TOTAL) {
|
|
||||||
needed = total_score;
|
|
||||||
score = SCORE_MAX;
|
|
||||||
} else
|
|
||||||
total_score += score;
|
|
||||||
|
|
||||||
DrawString(7, y, STR_PERFORMANCE_DETAIL_VEHICLES + i, 0);
|
|
||||||
|
|
||||||
// Draw the score
|
|
||||||
SetDParam(0, score);
|
|
||||||
DrawStringRightAligned(107, y, SET_PERFORMANCE_DETAIL_INT, 0);
|
|
||||||
|
|
||||||
// Calculate the %-bar
|
|
||||||
if (val > needed) x = 50;
|
|
||||||
else if (val == 0) x = 0;
|
|
||||||
else x = ((val * 50) / needed);
|
|
||||||
|
|
||||||
// SCORE_LOAN is inversed
|
|
||||||
if (val < 0 && i == SCORE_LOAN)
|
|
||||||
x = 0;
|
|
||||||
|
|
||||||
// Draw the bar
|
|
||||||
if (x != 0)
|
|
||||||
GfxFillRect(112, y-2, x + 112, y+10, color_done);
|
|
||||||
if (x != 50)
|
|
||||||
GfxFillRect(x + 112, y-2, 50 + 112, y+10, color_notdone);
|
|
||||||
|
|
||||||
// Calculate the %
|
|
||||||
if (val > needed) x = 100;
|
|
||||||
else x = ((val * 100) / needed);
|
|
||||||
|
|
||||||
// SCORE_LOAN is inversed
|
|
||||||
if (val < 0 && i == SCORE_LOAN)
|
|
||||||
x = 0;
|
|
||||||
|
|
||||||
// Draw it
|
|
||||||
SetDParam(0, x);
|
|
||||||
DrawStringCentered(137, y, STR_PERFORMANCE_DETAIL_PERCENT, 0);
|
|
||||||
|
|
||||||
// SCORE_LOAN is inversed
|
|
||||||
if (i == SCORE_LOAN)
|
|
||||||
val = needed - val;
|
|
||||||
|
|
||||||
// Draw the amount we have against what is needed
|
|
||||||
// For some of them it is in currency format
|
|
||||||
SetDParam(0, val);
|
|
||||||
SetDParam(1, needed);
|
|
||||||
switch (i) {
|
|
||||||
case SCORE_MIN_PROFIT:
|
|
||||||
case SCORE_MIN_INCOME:
|
|
||||||
case SCORE_MAX_INCOME:
|
|
||||||
case SCORE_MONEY:
|
|
||||||
case SCORE_LOAN:
|
|
||||||
DrawString(167, y, STR_PERFORMANCE_DETAIL_AMOUNT_CURRENCY, 0);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
DrawString(167, y, STR_PERFORMANCE_DETAIL_AMOUNT_INT, 0);
|
|
||||||
}
|
}
|
||||||
}
|
break;
|
||||||
|
|
||||||
break;
|
case WE_CREATE: {
|
||||||
}
|
int i;
|
||||||
|
Player *p2;
|
||||||
|
w->hidden_state = 0;
|
||||||
|
w->disabled_state = 0;
|
||||||
|
|
||||||
case WE_CLICK:
|
// Hide the player who are not active
|
||||||
// Check which button is clicked
|
for (i=0;i<MAX_PLAYERS;i++) {
|
||||||
if (IS_INT_INSIDE(e->click.widget, 13, 21)) {
|
if (!GetPlayer(i)->is_active) {
|
||||||
// Is it no on disable?
|
w->disabled_state += 1 << (i+13);
|
||||||
if ((w->disabled_state & (1 << e->click.widget)) == 0) {
|
}
|
||||||
w->click_state = 1 << e->click.widget;
|
|
||||||
SetWindowDirty(w);
|
|
||||||
}
|
}
|
||||||
}
|
// Update all player stats with the current data
|
||||||
break;
|
// (this is because _score_info is not saved to a savegame)
|
||||||
|
FOR_ALL_PLAYERS(p2)
|
||||||
|
if (p2->is_active)
|
||||||
|
UpdateCompanyRatingAndValue(p2, false);
|
||||||
|
|
||||||
case WE_CREATE:
|
w->custom[0] = DAY_TICKS;
|
||||||
{
|
w->custom[1] = 5;
|
||||||
int i;
|
|
||||||
Player *p2;
|
|
||||||
w->hidden_state = 0;
|
|
||||||
w->disabled_state = 0;
|
|
||||||
|
|
||||||
// Hide the player who are not active
|
w->click_state = 1 << 13;
|
||||||
for (i=0;i<MAX_PLAYERS;i++) {
|
|
||||||
if (!GetPlayer(i)->is_active) {
|
|
||||||
w->disabled_state += 1 << (i+13);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Update all player stats with the current data
|
|
||||||
// (this is because _score_info is not saved to a savegame)
|
|
||||||
FOR_ALL_PLAYERS(p2)
|
|
||||||
if (p2->is_active)
|
|
||||||
UpdateCompanyRatingAndValue(p2, false);
|
|
||||||
|
|
||||||
w->custom[0] = DAY_TICKS;
|
|
||||||
w->custom[1] = 5;
|
|
||||||
|
|
||||||
w->click_state = 1 << 13;
|
|
||||||
|
|
||||||
SetWindowDirty(w);
|
SetWindowDirty(w);
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case WE_TICK:
|
}
|
||||||
{
|
|
||||||
// Update the player score every 5 days
|
case WE_TICK: {
|
||||||
if (--w->custom[0] == 0) {
|
// Update the player score every 5 days
|
||||||
w->custom[0] = DAY_TICKS;
|
if (--w->custom[0] == 0) {
|
||||||
if (--w->custom[1] == 0) {
|
w->custom[0] = DAY_TICKS;
|
||||||
Player *p2;
|
if (--w->custom[1] == 0) {
|
||||||
w->custom[1] = 5;
|
Player *p2;
|
||||||
FOR_ALL_PLAYERS(p2)
|
w->custom[1] = 5;
|
||||||
// Skip if player is not active
|
FOR_ALL_PLAYERS(p2)
|
||||||
if (p2->is_active)
|
// Skip if player is not active
|
||||||
UpdateCompanyRatingAndValue(p2, false);
|
if (p2->is_active)
|
||||||
SetWindowDirty(w);
|
UpdateCompanyRatingAndValue(p2, false);
|
||||||
}
|
SetWindowDirty(w);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue