truelight@0: #include "stdafx.h" truelight@0: #include "ttd.h" truelight@0: #include "window.h" truelight@0: #include "gui.h" truelight@0: #include "gfx.h" truelight@0: #include "player.h" truelight@0: truelight@0: static uint _legend_showbits; truelight@0: static uint _legend_cargobits; truelight@0: truelight@0: /************************/ truelight@0: /* GENERIC GRAPH DRAWER */ truelight@0: /************************/ truelight@0: truelight@0: typedef struct GraphDrawer { truelight@0: uint sel; truelight@0: byte num_dataset; truelight@0: byte num_on_x_axis; truelight@0: byte month; truelight@0: byte year; truelight@0: bool include_neg; truelight@0: byte num_vert_lines; truelight@0: uint16 unk61A; truelight@0: uint16 unk61C; truelight@0: int left, top; truelight@0: uint height; truelight@0: StringID format_str_y_axis; truelight@0: byte color_3, color_2, bg_line_color; truelight@0: byte colors[16]; truelight@0: uint32 cost[16][24]; truelight@0: } GraphDrawer; truelight@0: truelight@0: void DrawGraph(GraphDrawer *gw) truelight@0: { truelight@0: truelight@0: int i,j,k; truelight@0: int x,y,old_x,old_y; truelight@0: int color; truelight@0: int right, bottom; truelight@0: int num_x, num_dataset; truelight@0: uint32 *row_ptr, *col_ptr; truelight@0: int32 mx; truelight@0: int adj_height; truelight@0: uint32 y_scaling, tmp; truelight@0: int32 value; truelight@0: int32 cur_val; truelight@0: uint sel; truelight@0: truelight@0: color = _color_list[gw->bg_line_color].window_color_1b; truelight@0: truelight@0: /* draw the vertical lines */ truelight@0: i = gw->num_vert_lines; assert(i > 0); truelight@0: x = gw->left + 66; truelight@0: bottom = gw->top + gw->height - 1; truelight@0: do { truelight@0: GfxFillRect(x, gw->top, x, bottom, color); truelight@0: x += 22; truelight@0: } while (--i); truelight@0: truelight@0: /* draw the horizontal lines */ truelight@0: i = 9; truelight@0: x = gw->left + 44; truelight@0: y = gw->height + gw->top; truelight@0: right = gw->left + 44 + gw->num_vert_lines*22-1; truelight@0: truelight@0: do { truelight@0: GfxFillRect(x, y, right, y, color); truelight@0: y -= gw->height >> 3; truelight@0: } while (--i); truelight@0: truelight@0: /* draw vertical edge line */ truelight@0: GfxFillRect(x, gw->top, x, bottom, gw->color_2); truelight@0: truelight@0: adj_height = gw->height; truelight@0: if (gw->include_neg) adj_height >>= 1; truelight@0: truelight@0: /* draw horiz edge line */ truelight@0: y = adj_height + gw->top; truelight@0: GfxFillRect(x, y, right, y, gw->color_2); truelight@0: truelight@0: /* find the max element */ truelight@0: if (gw->num_on_x_axis == 0) truelight@0: return; truelight@0: truelight@0: num_dataset = gw->num_dataset;assert(num_dataset > 0); truelight@0: row_ptr = gw->cost[0]; truelight@0: mx = 0; truelight@0: do { truelight@0: num_x = gw->num_on_x_axis;assert(num_x > 0); truelight@0: col_ptr = row_ptr; truelight@0: do { truelight@0: if (*col_ptr != 0x80000000) { truelight@0: mx = max(mx, myabs(*col_ptr)); truelight@0: } truelight@0: } while (col_ptr++, --num_x); truelight@0: } while (row_ptr+=24, --num_dataset); truelight@0: truelight@0: /* setup scaling */ truelight@0: y_scaling = 0x80000000; truelight@0: value = adj_height * 2; truelight@0: truelight@0: if (mx > value) { truelight@0: mx = (mx + 7) & ~7; truelight@0: y_scaling = (uint32) (((uint64) (value>>1) << 32) / mx); truelight@0: value = mx; truelight@0: } truelight@0: truelight@0: /* draw text strings on the y axis */ truelight@0: tmp = value; truelight@0: if (gw->include_neg) tmp >>= 1; truelight@0: x = gw->left + 45; truelight@0: y = gw->top - 3; truelight@0: i = 9; truelight@0: do { truelight@0: SET_DPARAM16(0, gw->format_str_y_axis); truelight@0: SET_DPARAM32(1, tmp); truelight@0: tmp -= (value >> 3); truelight@0: DrawStringRightAligned(x, y, STR_0170, gw->color_3); truelight@0: y += gw->height >> 3; truelight@0: } while (--i); truelight@0: truelight@0: /* draw strings on the x axis */ truelight@0: if (gw->month != 0xFF) { truelight@0: x = gw->left + 44; truelight@0: y = gw->top + gw->height + 1; truelight@0: j = gw->month; truelight@0: k = gw->year + 1920; truelight@0: i = gw->num_on_x_axis;assert(i>0); truelight@0: do { truelight@0: SET_DPARAM16(2, k); truelight@0: SET_DPARAM16(0, j + STR_0162_JAN); truelight@0: SET_DPARAM16(1, j + STR_0162_JAN + 2); truelight@0: DrawString(x, y, j == 0 ? STR_016F : STR_016E, gw->color_3); truelight@0: truelight@0: j += 3; truelight@0: if (j >= 12) { truelight@0: j = 0; truelight@0: k++; truelight@0: } truelight@0: x += 22; truelight@0: } while (--i); truelight@0: } else { truelight@0: x = gw->left + 52; truelight@0: y = gw->top + gw->height + 1; truelight@0: j = gw->unk61A; truelight@0: i = gw->num_on_x_axis;assert(i>0); truelight@0: do { truelight@0: SET_DPARAM16(0, j); truelight@0: DrawString(x, y, STR_01CB, gw->color_3); truelight@0: j += gw->unk61C; truelight@0: x += 22; truelight@0: } while (--i); truelight@0: } truelight@0: truelight@0: /* draw lines and dots */ truelight@0: i = 0; truelight@0: row_ptr = gw->cost[0]; truelight@0: sel = gw->sel; truelight@0: do { truelight@0: if (!(sel & 1)) { truelight@0: x = gw->left + 55; truelight@0: j = gw->num_on_x_axis;assert(j>0); truelight@0: col_ptr = row_ptr; truelight@0: color = gw->colors[i]; truelight@0: old_y = old_x = 0x80000000; truelight@0: do { truelight@0: cur_val = *col_ptr++; truelight@0: if (cur_val != (int32)0x80000000) { truelight@0: y = adj_height - BIGMULSS(cur_val, y_scaling >> 1, 31) + gw->top; truelight@0: truelight@0: GfxFillRect(x-1, y-1, x+1, y+1, color); truelight@0: if (old_x != 0x80000000) truelight@0: GfxDrawLine(old_x, old_y, x, y, color); truelight@0: truelight@0: old_x = x; truelight@0: old_y = y; truelight@0: } else { truelight@0: old_x = 0x80000000; truelight@0: } truelight@0: } while (x+=22,--j); truelight@0: } truelight@0: } while (sel>>=1,row_ptr+=24, ++i < gw->num_dataset); truelight@0: } truelight@0: truelight@0: /****************/ truelight@0: /* GRAPH LEGEND */ truelight@0: /****************/ truelight@0: truelight@0: void DrawPlayerIcon(int p, int x, int y) truelight@0: { truelight@0: DrawSprite(SPRITE_PALETTE(PLAYER_SPRITE_COLOR(p) + 0x2EB), x, y); truelight@0: } truelight@0: truelight@0: static void GraphLegendWndProc(Window *w, WindowEvent *e) truelight@0: { truelight@0: Player *p; truelight@0: truelight@0: switch(e->event) { truelight@0: case WE_PAINT: truelight@0: FOR_ALL_PLAYERS(p) { truelight@0: if (!p->is_active) truelight@0: SETBIT(_legend_showbits, p->index); truelight@0: } truelight@0: w->click_state = ((~_legend_showbits) << 3); truelight@0: DrawWindowWidgets(w); truelight@0: truelight@0: FOR_ALL_PLAYERS(p) { truelight@0: if (!p->is_active) truelight@0: continue; truelight@0: truelight@0: DrawPlayerIcon(p->index, 4, 18+p->index*12); truelight@0: truelight@0: SET_DPARAM16(0, p->name_1); truelight@0: SET_DPARAM32(1, p->name_2); darkvater@2: SET_DPARAM16(2, GetPlayerNameString(p->index, 3)); truelight@0: DrawString(21,17+p->index*12,STR_7021,HASBIT(_legend_showbits, p->index) ? 0x10 : 0xC); truelight@0: } truelight@0: break; truelight@0: truelight@0: case WE_CLICK: truelight@0: if (IS_INT_INSIDE(e->click.widget, 3, 11)) { truelight@0: _legend_showbits ^= (1 << (e->click.widget-3)); truelight@0: SetWindowDirty(w); truelight@0: InvalidateWindow(WC_INCOME_GRAPH, 0); truelight@0: InvalidateWindow(WC_OPERATING_PROFIT, 0); truelight@0: InvalidateWindow(WC_DELIVERED_CARGO, 0); truelight@0: InvalidateWindow(WC_PERFORMANCE_HISTORY, 0); truelight@0: } truelight@0: break; truelight@0: } truelight@0: } truelight@0: truelight@0: static const Widget _graph_legend_widgets[] = { truelight@0: { WWT_TEXTBTN, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW}, truelight@0: { WWT_CAPTION, 14, 11, 249, 0, 13, STR_704E_KEY_TO_COMPANY_GRAPHS, STR_018C_WINDOW_TITLE_DRAG_THIS}, truelight@0: { WWT_IMGBTN, 14, 0, 249, 14, 113, 0x0}, truelight@0: { WWT_IMGBTN, 14, 2, 247, 16, 27, 0x0,STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY}, truelight@0: { WWT_IMGBTN, 14, 2, 247, 28, 39, 0x0,STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY}, truelight@0: { WWT_IMGBTN, 14, 2, 247, 40, 51, 0x0,STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY}, truelight@0: { WWT_IMGBTN, 14, 2, 247, 52, 63, 0x0,STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY}, truelight@0: { WWT_IMGBTN, 14, 2, 247, 64, 75, 0x0,STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY}, truelight@0: { WWT_IMGBTN, 14, 2, 247, 76, 87, 0x0,STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY}, truelight@0: { WWT_IMGBTN, 14, 2, 247, 88, 99, 0x0,STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY}, truelight@0: { WWT_IMGBTN, 14, 2, 247, 100, 111, 0x0,STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY}, truelight@0: { WWT_LAST}, truelight@0: }; truelight@0: truelight@0: static const WindowDesc _graph_legend_desc = { truelight@0: -1, -1, 250, 114, truelight@0: WC_GRAPH_LEGEND,0, truelight@0: WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET, truelight@0: _graph_legend_widgets, truelight@0: GraphLegendWndProc truelight@0: }; truelight@0: truelight@0: static void ShowGraphLegend() truelight@0: { truelight@0: AllocateWindowDescFront(&_graph_legend_desc, 0); truelight@0: } truelight@0: truelight@0: /********************/ truelight@0: /* OPERATING PROFIT */ truelight@0: /********************/ truelight@0: truelight@0: static void SetupGraphDrawerForPlayers(GraphDrawer *gd) truelight@0: { truelight@0: Player *p; truelight@0: uint showbits = _legend_showbits; truelight@0: int nums; truelight@0: int mo,yr; truelight@0: truelight@0: // Exclude the players which aren't valid truelight@0: FOR_ALL_PLAYERS(p) { truelight@0: if (!p->is_active) CLRBIT(showbits,p->index); truelight@0: } truelight@0: gd->sel = showbits; truelight@0: gd->num_vert_lines = 24; truelight@0: truelight@0: nums = 0; truelight@0: FOR_ALL_PLAYERS(p) { truelight@0: if (p->is_active) nums = max(nums,p->num_valid_stat_ent); truelight@0: } truelight@0: gd->num_on_x_axis = min(nums,24); truelight@0: truelight@0: mo = (_cur_month/3-nums)*3; truelight@0: yr = _cur_year; truelight@0: while (mo < 0) { truelight@0: yr--; truelight@0: mo += 12; truelight@0: } truelight@0: truelight@0: gd->year = yr; truelight@0: gd->month = mo; truelight@0: } truelight@0: truelight@0: static void OperatingProfitWndProc(Window *w, WindowEvent *e) truelight@0: { truelight@0: switch(e->event) { truelight@0: case WE_PAINT: { truelight@0: GraphDrawer gd; truelight@0: Player *p; truelight@0: int i,j; truelight@0: int numd; truelight@0: truelight@0: DrawWindowWidgets(w); truelight@0: truelight@0: gd.left = 2; truelight@0: gd.top = 18; truelight@0: gd.height = 136; truelight@0: gd.include_neg = true; truelight@0: gd.format_str_y_axis = STR_7023; truelight@0: gd.color_3 = 0x10; truelight@0: gd.color_2 = 0xD7; truelight@0: gd.bg_line_color = 0xE; truelight@0: truelight@0: SetupGraphDrawerForPlayers(&gd); truelight@0: truelight@0: numd = 0; truelight@0: FOR_ALL_PLAYERS(p) { truelight@0: if (!p->is_active) truelight@0: continue; truelight@0: gd.colors[numd] = _color_list[p->player_color].window_color_bgb; truelight@0: for(j=gd.num_on_x_axis,i=0; --j >= 0;) { truelight@0: gd.cost[numd][i] = (j >= p->num_valid_stat_ent) ? 0x80000000 : (p->old_economy[j].income + p->old_economy[j].expenses); truelight@0: i++; truelight@0: } truelight@0: numd++; truelight@0: } truelight@0: gd.num_dataset=numd; truelight@0: truelight@0: DrawGraph(&gd); truelight@0: break; truelight@0: } truelight@0: truelight@0: case WE_CLICK: truelight@0: if (e->click.widget == 2) truelight@0: ShowGraphLegend(); truelight@0: break; truelight@0: } truelight@0: } truelight@0: truelight@0: static const Widget _operating_profit_widgets[] = { truelight@0: { WWT_TEXTBTN, 14, 0, 10, 0, 13, STR_00C5,STR_018B_CLOSE_WINDOW}, truelight@0: { WWT_CAPTION, 14, 11, 525, 0, 13, STR_7025_OPERATING_PROFIT_GRAPH, STR_018C_WINDOW_TITLE_DRAG_THIS}, truelight@0: { WWT_PUSHTXTBTN, 14, 526, 575, 0, 13, STR_704C_KEY, STR_704D_SHOW_KEY_TO_GRAPHS}, truelight@0: { WWT_IMGBTN, 14, 0, 575, 14, 173, 0x0}, truelight@0: { WWT_LAST}, truelight@0: }; truelight@0: truelight@0: static const WindowDesc _operating_profit_desc = { truelight@0: -1, -1, 576, 174, truelight@0: WC_OPERATING_PROFIT,0, truelight@0: WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS, truelight@0: _operating_profit_widgets, truelight@0: OperatingProfitWndProc truelight@0: }; truelight@0: truelight@0: truelight@0: void ShowOperatingProfitGraph() truelight@0: { truelight@0: if (AllocateWindowDescFront(&_operating_profit_desc, 0)) { truelight@0: InvalidateWindow(WC_GRAPH_LEGEND, 0); truelight@0: _legend_showbits = 0; truelight@0: } truelight@0: } truelight@0: truelight@0: truelight@0: /****************/ truelight@0: /* INCOME GRAPH */ truelight@0: /****************/ truelight@0: truelight@0: static void IncomeGraphWndProc(Window *w, WindowEvent *e) truelight@0: { truelight@0: switch(e->event) { truelight@0: case WE_PAINT: { truelight@0: GraphDrawer gd; truelight@0: Player *p; truelight@0: int i,j; truelight@0: int numd; truelight@0: truelight@0: DrawWindowWidgets(w); truelight@0: truelight@0: gd.left = 2; truelight@0: gd.top = 18; truelight@0: gd.height = 104; truelight@0: gd.include_neg = false; truelight@0: gd.format_str_y_axis = STR_7023; truelight@0: gd.color_3 = 0x10; truelight@0: gd.color_2 = 0xD7; truelight@0: gd.bg_line_color = 0xE; truelight@0: SetupGraphDrawerForPlayers(&gd); truelight@0: truelight@0: numd = 0; truelight@0: FOR_ALL_PLAYERS(p) { truelight@0: if (!p->is_active) truelight@0: continue; truelight@0: gd.colors[numd] = _color_list[p->player_color].window_color_bgb; truelight@0: for(j=gd.num_on_x_axis,i=0; --j >= 0;) { truelight@0: gd.cost[numd][i] = (j >= p->num_valid_stat_ent) ? 0x80000000 : (p->old_economy[j].income); truelight@0: i++; truelight@0: } truelight@0: numd++; truelight@0: } truelight@0: truelight@0: gd.num_dataset = numd; truelight@0: truelight@0: DrawGraph(&gd); truelight@0: break; truelight@0: } truelight@0: truelight@0: case WE_CLICK: truelight@0: if (e->click.widget == 2) truelight@0: ShowGraphLegend(); truelight@0: break; truelight@0: } truelight@0: } truelight@0: truelight@0: static const Widget _income_graph_widgets[] = { truelight@0: { WWT_TEXTBTN, 14, 0, 10, 0, 13, STR_00C5,STR_018B_CLOSE_WINDOW}, truelight@0: { WWT_CAPTION, 14, 11, 525, 0, 13, STR_7022_INCOME_GRAPH, STR_018C_WINDOW_TITLE_DRAG_THIS}, truelight@0: { WWT_PUSHTXTBTN, 14, 526, 575, 0, 13, STR_704C_KEY, STR_704D_SHOW_KEY_TO_GRAPHS}, truelight@0: { WWT_IMGBTN, 14, 0, 575, 14, 141, 0x0}, truelight@0: { WWT_LAST}, truelight@0: }; truelight@0: truelight@0: static const WindowDesc _income_graph_desc = { truelight@0: -1, -1, 576, 142, truelight@0: WC_INCOME_GRAPH,0, truelight@0: WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS, truelight@0: _income_graph_widgets, truelight@0: IncomeGraphWndProc truelight@0: }; truelight@0: truelight@0: void ShowIncomeGraph() truelight@0: { truelight@0: if (AllocateWindowDescFront(&_income_graph_desc, 0)) { truelight@0: InvalidateWindow(WC_GRAPH_LEGEND, 0); truelight@0: _legend_showbits = 0; truelight@0: } truelight@0: } truelight@0: truelight@0: /*******************/ truelight@0: /* DELIVERED CARGO */ truelight@0: /*******************/ truelight@0: truelight@0: static void DeliveredCargoGraphWndProc(Window *w, WindowEvent *e) truelight@0: { truelight@0: switch(e->event) { truelight@0: case WE_PAINT: { truelight@0: GraphDrawer gd; truelight@0: Player *p; truelight@0: int i,j; truelight@0: int numd; truelight@0: truelight@0: DrawWindowWidgets(w); truelight@0: truelight@0: gd.left = 2; truelight@0: gd.top = 18; truelight@0: gd.height = 104; truelight@0: gd.include_neg = false; truelight@0: gd.format_str_y_axis = STR_7024; truelight@0: gd.color_3 = 0x10; truelight@0: gd.color_2 = 0xD7; truelight@0: gd.bg_line_color = 0xE; truelight@0: SetupGraphDrawerForPlayers(&gd); truelight@0: truelight@0: numd = 0; truelight@0: FOR_ALL_PLAYERS(p) { truelight@0: if (!p->is_active) truelight@0: continue; truelight@0: gd.colors[numd] = _color_list[p->player_color].window_color_bgb; truelight@0: for(j=gd.num_on_x_axis,i=0; --j >= 0;) { truelight@0: gd.cost[numd][i] = (j >= p->num_valid_stat_ent) ? 0x80000000 : p->old_economy[j].delivered_cargo; truelight@0: i++; truelight@0: } truelight@0: numd++; truelight@0: } truelight@0: truelight@0: gd.num_dataset = numd; truelight@0: truelight@0: DrawGraph(&gd); truelight@0: break; truelight@0: } truelight@0: truelight@0: case WE_CLICK: truelight@0: if (e->click.widget == 2) truelight@0: ShowGraphLegend(); truelight@0: break; truelight@0: } truelight@0: } truelight@0: truelight@0: static const Widget _delivered_cargo_graph_widgets[] = { truelight@0: { WWT_TEXTBTN, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW}, truelight@0: { WWT_CAPTION, 14, 11, 525, 0, 13, STR_7050_UNITS_OF_CARGO_DELIVERED, STR_018C_WINDOW_TITLE_DRAG_THIS}, truelight@0: { WWT_PUSHTXTBTN, 14, 526, 575, 0, 13, STR_704C_KEY, STR_704D_SHOW_KEY_TO_GRAPHS}, truelight@0: { WWT_IMGBTN, 14, 0, 575, 14, 141, 0x0}, truelight@0: { WWT_LAST}, truelight@0: }; truelight@0: truelight@0: static const WindowDesc _delivered_cargo_graph_desc = { truelight@0: -1, -1, 576, 142, truelight@0: WC_DELIVERED_CARGO,0, truelight@0: WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS, truelight@0: _delivered_cargo_graph_widgets, truelight@0: DeliveredCargoGraphWndProc truelight@0: }; truelight@0: truelight@0: void ShowDeliveredCargoGraph() truelight@0: { truelight@0: if (AllocateWindowDescFront(&_delivered_cargo_graph_desc, 0)) { truelight@0: InvalidateWindow(WC_GRAPH_LEGEND, 0); truelight@0: _legend_showbits = 0; truelight@0: } truelight@0: } truelight@0: truelight@0: /***********************/ truelight@0: /* PERFORMANCE HISTORY */ truelight@0: /***********************/ truelight@0: truelight@0: static void PerformanceHistoryWndProc(Window *w, WindowEvent *e) truelight@0: { truelight@0: switch(e->event) { truelight@0: case WE_PAINT: { truelight@0: GraphDrawer gd; truelight@0: Player *p; truelight@0: int i,j; truelight@0: int numd; truelight@0: truelight@0: DrawWindowWidgets(w); truelight@0: truelight@0: gd.left = 2; truelight@0: gd.top = 18; truelight@0: gd.height = 200; truelight@0: gd.include_neg = false; truelight@0: gd.format_str_y_axis = STR_7024; truelight@0: gd.color_3 = 0x10; truelight@0: gd.color_2 = 0xD7; truelight@0: gd.bg_line_color = 0xE; truelight@0: SetupGraphDrawerForPlayers(&gd); truelight@0: truelight@0: numd = 0; truelight@0: FOR_ALL_PLAYERS(p) { truelight@0: if (!p->is_active) truelight@0: continue; truelight@0: gd.colors[numd] = _color_list[p->player_color].window_color_bgb; truelight@0: for(j=gd.num_on_x_axis,i=0; --j >= 0;) { truelight@0: gd.cost[numd][i] = (j >= p->num_valid_stat_ent) ? 0x80000000 : p->old_economy[j].performance_history; truelight@0: i++; truelight@0: } truelight@0: numd++; truelight@0: } truelight@0: gd.num_dataset = numd; truelight@0: truelight@0: DrawGraph(&gd); truelight@0: break; truelight@0: } truelight@0: truelight@0: case WE_CLICK: truelight@0: if (e->click.widget == 2) truelight@0: ShowGraphLegend(); truelight@0: break; truelight@0: } truelight@0: } truelight@0: truelight@0: static const Widget _performance_history_widgets[] = { truelight@0: { WWT_TEXTBTN, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW}, truelight@0: { WWT_CAPTION, 14, 11, 525, 0, 13, STR_7051_COMPANY_PERFORMANCE_RATINGS, STR_018C_WINDOW_TITLE_DRAG_THIS}, truelight@0: { WWT_PUSHTXTBTN, 14, 526, 575, 0, 13, STR_704C_KEY, STR_704D_SHOW_KEY_TO_GRAPHS}, truelight@0: { WWT_IMGBTN, 14, 0, 575, 14, 237, 0x0}, truelight@0: { WWT_LAST}, truelight@0: }; truelight@0: truelight@0: static const WindowDesc _performance_history_desc = { truelight@0: -1, -1, 576, 238, truelight@0: WC_PERFORMANCE_HISTORY,0, truelight@0: WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS, truelight@0: _performance_history_widgets, truelight@0: PerformanceHistoryWndProc truelight@0: }; truelight@0: truelight@0: void ShowPerformanceHistoryGraph() truelight@0: { truelight@0: if (AllocateWindowDescFront(&_performance_history_desc, 0)) { truelight@0: InvalidateWindow(WC_GRAPH_LEGEND, 0); truelight@0: _legend_showbits = 0; truelight@0: } truelight@0: } truelight@0: truelight@0: /*****************/ truelight@0: /* COMPANY VALUE */ truelight@0: /*****************/ truelight@0: truelight@0: static void CompanyValueGraphWndProc(Window *w, WindowEvent *e) truelight@0: { truelight@0: switch(e->event) { truelight@0: case WE_PAINT: { truelight@0: GraphDrawer gd; truelight@0: Player *p; truelight@0: int i,j; truelight@0: int numd; truelight@0: truelight@0: DrawWindowWidgets(w); truelight@0: truelight@0: gd.left = 2; truelight@0: gd.top = 18; truelight@0: gd.height = 200; truelight@0: gd.include_neg = false; truelight@0: gd.format_str_y_axis = STR_7023; truelight@0: gd.color_3 = 0x10; truelight@0: gd.color_2 = 0xD7; truelight@0: gd.bg_line_color = 0xE; truelight@0: SetupGraphDrawerForPlayers(&gd); truelight@0: truelight@0: numd = 0; truelight@0: FOR_ALL_PLAYERS(p) { truelight@0: if (!p->is_active) truelight@0: continue; truelight@0: gd.colors[numd] = _color_list[p->player_color].window_color_bgb; truelight@0: for(j=gd.num_on_x_axis,i=0; --j >= 0;) { truelight@0: gd.cost[numd][i] = (j >= p->num_valid_stat_ent) ? 0x80000000 : (p->old_economy[j].company_value); truelight@0: i++; truelight@0: } truelight@0: numd++; truelight@0: } truelight@0: gd.num_dataset = numd; truelight@0: truelight@0: truelight@0: DrawGraph(&gd); truelight@0: break; truelight@0: } truelight@0: truelight@0: case WE_CLICK: truelight@0: if (e->click.widget == 2) truelight@0: ShowGraphLegend(); truelight@0: break; truelight@0: } truelight@0: } truelight@0: truelight@0: static const Widget _company_value_graph_widgets[] = { truelight@0: { WWT_TEXTBTN, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW}, truelight@0: { WWT_CAPTION, 14, 11, 525, 0, 13, STR_7052_COMPANY_VALUES, STR_018C_WINDOW_TITLE_DRAG_THIS}, truelight@0: { WWT_PUSHTXTBTN, 14, 526, 575, 0, 13, STR_704C_KEY, STR_704D_SHOW_KEY_TO_GRAPHS}, truelight@0: { WWT_IMGBTN, 14, 0, 575, 14, 237, 0x0}, truelight@0: { WWT_LAST}, truelight@0: }; truelight@0: truelight@0: static const WindowDesc _company_value_graph_desc = { truelight@0: -1, -1, 576, 238, truelight@0: WC_COMPANY_VALUE,0, truelight@0: WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS, truelight@0: _company_value_graph_widgets, truelight@0: CompanyValueGraphWndProc truelight@0: }; truelight@0: truelight@0: void ShowCompanyValueGraph() truelight@0: { truelight@0: if (AllocateWindowDescFront(&_company_value_graph_desc, 0)) { truelight@0: InvalidateWindow(WC_GRAPH_LEGEND, 0); truelight@0: _legend_showbits = 0; truelight@0: } truelight@0: } truelight@0: truelight@0: /*****************/ truelight@0: /* PAYMENT RATES */ truelight@0: /*****************/ truelight@0: truelight@0: static const byte _cargo_legend_colors[12] = {152, 32, 15, 174, 208, 194, 191, 84, 184, 10, 202, 215}; truelight@0: truelight@0: static void CargoPaymentRatesWndProc(Window *w, WindowEvent *e) truelight@0: { truelight@0: switch(e->event) { truelight@0: case WE_PAINT: { truelight@0: int i, j, x, y; truelight@0: GraphDrawer gd; truelight@0: truelight@0: gd.sel = _legend_cargobits; truelight@0: w->click_state = (~_legend_cargobits) << 3; truelight@0: DrawWindowWidgets(w); truelight@0: truelight@0: x = 495; truelight@0: y = 25; truelight@0: truelight@0: for(i=0; i!=NUM_CARGO; i++) { truelight@0: GfxFillRect(x, y, x+8, y+5, 0); truelight@0: GfxFillRect(x+1, y+1, x+7, y+4, _cargo_legend_colors[i]); truelight@0: SET_DPARAM16(0, _cargoc.names_s[i]); truelight@0: DrawString(x+14, y, STR_7065, 0); truelight@0: y += 8; truelight@0: } truelight@0: truelight@0: gd.left = 2; truelight@0: gd.top = 24; truelight@0: gd.height = 104; truelight@0: gd.include_neg = false; truelight@0: gd.format_str_y_axis = STR_7023; truelight@0: gd.color_3 = 16; truelight@0: gd.color_2 = 215; truelight@0: gd.bg_line_color = 14; truelight@0: gd.num_dataset = 12; truelight@0: gd.num_on_x_axis = 20; truelight@0: gd.num_vert_lines = 20; truelight@0: gd.month = 0xFF; truelight@0: gd.unk61A = 10; truelight@0: gd.unk61C = 10; truelight@0: truelight@0: for(i=0; i!=NUM_CARGO; i++) { truelight@0: gd.colors[i] = _cargo_legend_colors[i]; truelight@0: for(j=0; j!=20; j++) { truelight@0: gd.cost[i][j] = GetTransportedGoodsIncome(10, 20, j*6+6,i); truelight@0: } truelight@0: } truelight@0: truelight@0: DrawGraph(&gd); truelight@0: truelight@0: DrawString(2 + 46, 24 + gd.height + 7, STR_7062_DAYS_IN_TRANSIT, 0); truelight@0: DrawString(2 + 84, 24 - 9, STR_7063_PAYMENT_FOR_DELIVERING, 0); truelight@0: } break; truelight@0: truelight@0: case WE_CLICK: { truelight@0: switch(e->click.widget) { truelight@0: case 3: case 4: case 5: case 6: truelight@0: case 7: case 8: case 9: case 10: truelight@0: case 11: case 12: case 13: case 14: truelight@0: _legend_cargobits ^= 1 << (e->click.widget - 3); truelight@0: SetWindowDirty(w); truelight@0: break; truelight@0: } truelight@0: } break; truelight@0: } truelight@0: } truelight@0: truelight@0: static const Widget _cargo_payment_rates_widgets[] = { truelight@0: { WWT_CLOSEBOX, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW}, truelight@0: { WWT_CAPTION, 14, 11, 567, 0, 13, STR_7061_CARGO_PAYMENT_RATES, STR_018C_WINDOW_TITLE_DRAG_THIS}, truelight@0: { WWT_PANEL, 14, 0, 567, 14, 141, 0x0, 0}, truelight@0: { WWT_PANEL, 12, 493, 562, 24, 31, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO}, truelight@0: { WWT_PANEL, 12, 493, 562, 32, 39, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO}, truelight@0: { WWT_PANEL, 12, 493, 562, 40, 47, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO}, truelight@0: { WWT_PANEL, 12, 493, 562, 48, 55, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO}, truelight@0: { WWT_PANEL, 12, 493, 562, 56, 63, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO}, truelight@0: { WWT_PANEL, 12, 493, 562, 64, 71, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO}, truelight@0: { WWT_PANEL, 12, 493, 562, 72, 79, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO}, truelight@0: { WWT_PANEL, 12, 493, 562, 80, 87, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO}, truelight@0: { WWT_PANEL, 12, 493, 562, 88, 95, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO}, truelight@0: { WWT_PANEL, 12, 493, 562, 96, 103, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO}, truelight@0: { WWT_PANEL, 12, 493, 562, 104, 111, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO}, truelight@0: { WWT_PANEL, 12, 493, 562, 112, 119, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO}, truelight@0: { WWT_LAST}, truelight@0: }; truelight@0: truelight@0: static const WindowDesc _cargo_payment_rates_desc = { truelight@0: -1, -1, 568, 142, truelight@0: WC_PAYMENT_RATES,0, truelight@0: WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET, truelight@0: _cargo_payment_rates_widgets, truelight@0: CargoPaymentRatesWndProc truelight@0: }; truelight@0: truelight@0: truelight@0: void ShowCargoPaymentRates() truelight@0: { truelight@0: AllocateWindowDescFront(&_cargo_payment_rates_desc, 0); truelight@0: } truelight@0: truelight@0: /************************/ truelight@0: /* COMPANY LEAGUE TABLE */ truelight@0: /************************/ truelight@0: truelight@0: static const StringID _performance_titles[] = { truelight@0: STR_7066_ENGINEER, truelight@0: STR_7066_ENGINEER, truelight@0: STR_7067_TRAFFIC_MANAGER, truelight@0: STR_7067_TRAFFIC_MANAGER, truelight@0: STR_7068_TRANSPORT_COORDINATOR, truelight@0: STR_7068_TRANSPORT_COORDINATOR, truelight@0: STR_7069_ROUTE_SUPERVISOR, truelight@0: STR_7069_ROUTE_SUPERVISOR, truelight@0: STR_706A_DIRECTOR, truelight@0: STR_706A_DIRECTOR, truelight@0: STR_706B_CHIEF_EXECUTIVE, truelight@0: STR_706B_CHIEF_EXECUTIVE, truelight@0: STR_706C_CHAIRMAN, truelight@0: STR_706C_CHAIRMAN, truelight@0: STR_706D_PRESIDENT, truelight@0: STR_706E_TYCOON, truelight@0: }; truelight@0: truelight@0: static StringID GetPerformanceTitleFromValue(uint v) truelight@0: { truelight@0: return _performance_titles[minu(v, 1000) >> 6]; truelight@0: } truelight@0: truelight@0: static int CDECL _perf_hist_comp(const void *elem1, const void *elem2 ) { truelight@0: Player *p1 = *(Player**)elem1; truelight@0: Player *p2 = *(Player**)elem2; truelight@0: int32 v = p2->old_economy[1].performance_history - p1->old_economy[1].performance_history; truelight@0: return (v!=0) | (v >> (sizeof(int32)*8-1)); truelight@0: } truelight@0: truelight@0: static void CompanyLeagueWndProc(Window *w, WindowEvent *e) truelight@0: { truelight@0: switch(e->event) { truelight@0: case WE_PAINT: { truelight@0: Player *p; truelight@0: Player *plist[MAX_PLAYERS]; truelight@0: size_t pl_num, i; truelight@0: truelight@0: DrawWindowWidgets(w); truelight@0: truelight@0: pl_num=0; truelight@0: FOR_ALL_PLAYERS(p) { truelight@0: if (p->is_active) truelight@0: plist[pl_num++] = p; truelight@0: } truelight@0: assert(pl_num > 0); truelight@0: truelight@0: qsort(plist, pl_num, sizeof(Player*), _perf_hist_comp); truelight@0: truelight@0: i = 0; truelight@0: do { truelight@0: SET_DPARAM16(0, i + 1 + STR_01AB); truelight@0: p = plist[i]; truelight@0: SET_DPARAM16(1, p->name_1); truelight@0: SET_DPARAM32(2, p->name_2); truelight@0: darkvater@2: SET_DPARAM16(3, GetPlayerNameString(p->index, 4)); darkvater@16: /* WARNING ugly hack! darkvater@16: GetPlayerNameString sets up (Player #) if the player is human in an extra DPARAM16 darkvater@16: It seems that if player is non-human, nothing is set up, so param is 0. GetString doesn't like darkvater@16: that because there is another param after it. darkvater@16: So we'll just shift the rating one back if player is AI and all is fine darkvater@16: */ darkvater@16: SET_DPARAM16((IS_HUMAN_PLAYER(i) ? 5 : 4), GetPerformanceTitleFromValue(p->old_economy[1].performance_history)); truelight@0: truelight@0: DrawString(2, 15 + i * 10, i == 0 ? STR_7054 : STR_7055, 0); truelight@0: DrawPlayerIcon(p->index, 27, 16 + i * 10); truelight@0: } while (++i != pl_num); truelight@0: truelight@0: break; truelight@0: } truelight@0: } truelight@0: } truelight@0: truelight@0: truelight@0: static const Widget _company_league_widgets[] = { truelight@0: { WWT_TEXTBTN, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW}, truelight@0: { WWT_CAPTION, 14, 11, 399, 0, 13, STR_7053_COMPANY_LEAGUE_TABLE, STR_018C_WINDOW_TITLE_DRAG_THIS}, truelight@0: { WWT_IMGBTN, 14, 0, 399, 14, 96, 0x0}, truelight@0: { WWT_LAST}, truelight@0: }; truelight@0: truelight@0: static const WindowDesc _company_league_desc = { truelight@0: -1, -1, 400, 97, truelight@0: WC_COMPANY_LEAGUE,0, truelight@0: WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET, truelight@0: _company_league_widgets, truelight@0: CompanyLeagueWndProc truelight@0: }; truelight@0: truelight@0: void ShowCompanyLeagueTable() truelight@0: { truelight@0: AllocateWindowDescFront(&_company_league_desc,0); truelight@0: }