2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "stdafx.h"
|
2005-06-02 19:30:21 +00:00
|
|
|
#include "openttd.h"
|
2004-11-25 10:47:30 +00:00
|
|
|
#include "table/strings.h"
|
2005-07-24 15:56:31 +00:00
|
|
|
#include "table/sprites.h"
|
2005-07-22 07:02:20 +00:00
|
|
|
#include "functions.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "window.h"
|
|
|
|
#include "gui.h"
|
|
|
|
#include "gfx.h"
|
|
|
|
#include "player.h"
|
2004-08-23 10:59:03 +00:00
|
|
|
#include "economy.h"
|
2005-07-21 22:15:02 +00:00
|
|
|
#include "variables.h"
|
2006-08-14 14:21:15 +00:00
|
|
|
#include "date.h"
|
2007-01-10 18:56:51 +00:00
|
|
|
#include "helpers.hpp"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-12-09 00:37:02 +00:00
|
|
|
const byte _cargo_colours[NUM_CARGO] = {152, 32, 15, 174, 208, 194, 191, 84, 184, 10, 202, 48};
|
|
|
|
|
2005-01-21 11:12:17 +00:00
|
|
|
static uint _legend_excludebits;
|
2004-08-09 17:04:08 +00:00
|
|
|
static uint _legend_cargobits;
|
|
|
|
|
|
|
|
/************************/
|
|
|
|
/* GENERIC GRAPH DRAWER */
|
|
|
|
/************************/
|
|
|
|
|
2007-01-21 18:42:15 +00:00
|
|
|
enum {
|
|
|
|
GRAPH_MAX_DATASETS = 16,
|
|
|
|
GRAPH_AXIS_LABEL_COLOUR = 16,
|
|
|
|
GRAPH_AXIS_LINE_COLOUR = 215,
|
2007-01-21 20:14:35 +00:00
|
|
|
|
|
|
|
GRAPH_X_POSITION_BEGINNING = 44, // Start the graph 44 pixels from gw->left
|
|
|
|
GRAPH_X_POSITION_SEPARATION = 22, // There are 22 pixels between each X value
|
|
|
|
|
|
|
|
/* How many horizontal lines to draw. 9 is convenient as that means the
|
|
|
|
* distance between them is the height of the graph / 8, which is the same
|
|
|
|
* as height >> 3. */
|
|
|
|
GRAPH_NUM_LINES_Y = 9,
|
2007-01-21 18:42:15 +00:00
|
|
|
};
|
2004-09-13 20:38:36 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
typedef struct GraphDrawer {
|
2005-01-21 11:12:17 +00:00
|
|
|
uint sel; // bitmask of the players *excluded* (e.g. 11111111 means that no players are shown)
|
2004-08-09 17:04:08 +00:00
|
|
|
byte num_dataset;
|
|
|
|
byte num_on_x_axis;
|
|
|
|
bool include_neg;
|
|
|
|
byte num_vert_lines;
|
2007-01-21 19:19:25 +00:00
|
|
|
|
|
|
|
/* The starting month and year that values are plotted against. If month is
|
|
|
|
* 0xFF, use x_values_start and x_values_increment below instead. */
|
|
|
|
byte month;
|
|
|
|
Year year;
|
|
|
|
|
|
|
|
/* These values are used if the graph is being plotted against values
|
|
|
|
* rather than the dates specified by month and year. */
|
|
|
|
uint16 x_values_start;
|
|
|
|
uint16 x_values_increment;
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
int left, top;
|
|
|
|
uint height;
|
|
|
|
StringID format_str_y_axis;
|
2007-01-21 18:42:15 +00:00
|
|
|
byte colors[GRAPH_MAX_DATASETS];
|
|
|
|
int64 cost[GRAPH_MAX_DATASETS][24]; // last 2 years
|
2004-08-09 17:04:08 +00:00
|
|
|
} GraphDrawer;
|
|
|
|
|
2007-01-21 15:03:37 +00:00
|
|
|
static const int64 INVALID_VALUE = 0x80000000;
|
2004-09-13 20:38:36 +00:00
|
|
|
|
2005-09-18 20:56:44 +00:00
|
|
|
static void DrawGraph(const GraphDrawer *gw)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-01-23 23:58:35 +00:00
|
|
|
uint x,y,old_x,old_y;
|
2007-01-21 20:14:35 +00:00
|
|
|
int right;
|
2007-01-22 20:38:19 +00:00
|
|
|
int64 highest_value;
|
2004-08-09 17:04:08 +00:00
|
|
|
int adj_height;
|
2007-01-21 20:14:35 +00:00
|
|
|
uint64 y_scaling;
|
2004-09-13 20:38:36 +00:00
|
|
|
int64 value;
|
2004-08-09 17:04:08 +00:00
|
|
|
uint sel;
|
|
|
|
|
2004-09-13 23:43:54 +00:00
|
|
|
/* the colors and cost array of GraphDrawer must accomodate
|
2004-09-13 20:38:36 +00:00
|
|
|
* both values for cargo and players. So if any are higher, quit */
|
2007-01-21 18:42:15 +00:00
|
|
|
assert(GRAPH_MAX_DATASETS >= (int)NUM_CARGO && GRAPH_MAX_DATASETS >= (int)MAX_PLAYERS);
|
2004-09-13 20:38:36 +00:00
|
|
|
|
2007-01-21 20:14:35 +00:00
|
|
|
assert(gw->num_vert_lines > 0);
|
|
|
|
|
2007-01-21 18:07:35 +00:00
|
|
|
byte grid_colour = _colour_gradient[14][4];
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-01-21 20:14:35 +00:00
|
|
|
/* Position of the bottom of the graph. */
|
|
|
|
int bottom = gw->top + gw->height - 1;
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
/* draw the vertical lines */
|
2007-01-21 20:14:35 +00:00
|
|
|
|
|
|
|
/* Don't draw the first line, as that's where the axis will be. */
|
|
|
|
x = gw->left + GRAPH_X_POSITION_BEGINNING + GRAPH_X_POSITION_SEPARATION;
|
|
|
|
|
|
|
|
for (int i = 0; i < gw->num_vert_lines; i++) {
|
2007-01-21 18:07:35 +00:00
|
|
|
GfxFillRect(x, gw->top, x, bottom, grid_colour);
|
2007-01-21 20:14:35 +00:00
|
|
|
x += GRAPH_X_POSITION_SEPARATION;
|
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
/* draw the horizontal lines */
|
2007-01-21 20:14:35 +00:00
|
|
|
x = gw->left + GRAPH_X_POSITION_BEGINNING;
|
2004-08-09 17:04:08 +00:00
|
|
|
y = gw->height + gw->top;
|
2007-01-21 20:14:35 +00:00
|
|
|
right = gw->left + GRAPH_X_POSITION_BEGINNING + gw->num_vert_lines * GRAPH_X_POSITION_SEPARATION - 1;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-01-21 20:14:35 +00:00
|
|
|
for (int i = 0; i < GRAPH_NUM_LINES_Y; i++) {
|
2007-01-21 18:07:35 +00:00
|
|
|
GfxFillRect(x, y, right, y, grid_colour);
|
2007-01-21 20:14:35 +00:00
|
|
|
y -= (gw->height / (GRAPH_NUM_LINES_Y - 1));
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
/* draw vertical edge line */
|
2007-01-21 18:42:15 +00:00
|
|
|
GfxFillRect(x, gw->top, x, bottom, GRAPH_AXIS_LINE_COLOUR);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
adj_height = gw->height;
|
|
|
|
if (gw->include_neg) adj_height >>= 1;
|
|
|
|
|
|
|
|
/* draw horiz edge line */
|
|
|
|
y = adj_height + gw->top;
|
2007-01-21 18:42:15 +00:00
|
|
|
GfxFillRect(x, y, right, y, GRAPH_AXIS_LINE_COLOUR);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
/* find the max element */
|
|
|
|
if (gw->num_on_x_axis == 0)
|
|
|
|
return;
|
|
|
|
|
2007-01-21 20:14:35 +00:00
|
|
|
assert(gw->num_on_x_axis > 0);
|
2007-01-21 20:54:29 +00:00
|
|
|
assert(gw->num_dataset > 0);
|
2004-09-13 20:38:36 +00:00
|
|
|
|
2007-01-22 20:38:19 +00:00
|
|
|
highest_value = 0;
|
|
|
|
|
|
|
|
/* bit selection for the showing of various players, base max element
|
|
|
|
* on to-be shown player-information. This way the graph can scale */
|
2004-09-13 20:38:36 +00:00
|
|
|
sel = gw->sel;
|
2007-01-21 20:54:29 +00:00
|
|
|
for (int i = 0; i < gw->num_dataset; i++) {
|
2004-09-13 20:38:36 +00:00
|
|
|
if (!(sel&1)) {
|
2007-01-22 15:46:57 +00:00
|
|
|
for (int j = 0; j < gw->num_on_x_axis; j++) {
|
|
|
|
int64 datapoint = gw->cost[i][j];
|
|
|
|
|
|
|
|
if (datapoint != INVALID_VALUE) {
|
2007-01-22 20:38:19 +00:00
|
|
|
/* For now, if the graph has negative values the scaling is
|
|
|
|
* symmetrical about the x axis, so take the absolute value
|
|
|
|
* of each data point. */
|
|
|
|
highest_value = max(highest_value, myabs(datapoint));
|
2004-09-13 20:38:36 +00:00
|
|
|
}
|
2007-01-21 20:54:29 +00:00
|
|
|
}
|
2004-09-13 20:38:36 +00:00
|
|
|
}
|
2007-01-21 20:54:29 +00:00
|
|
|
sel >>= 1;
|
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
/* setup scaling */
|
2004-09-13 20:38:36 +00:00
|
|
|
y_scaling = INVALID_VALUE;
|
2004-08-09 17:04:08 +00:00
|
|
|
value = adj_height * 2;
|
|
|
|
|
2007-01-22 20:38:19 +00:00
|
|
|
if (highest_value > value) {
|
|
|
|
highest_value = ALIGN(highest_value, 8);
|
|
|
|
y_scaling = (((uint64) (value>>1) << 32) / highest_value);
|
|
|
|
value = highest_value;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* draw text strings on the y axis */
|
2007-01-21 20:14:35 +00:00
|
|
|
int64 y_label = value;
|
|
|
|
if (gw->include_neg) y_label /= 2;
|
|
|
|
x = gw->left + GRAPH_X_POSITION_BEGINNING + 1;
|
2004-08-09 17:04:08 +00:00
|
|
|
y = gw->top - 3;
|
2007-01-21 20:14:35 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < GRAPH_NUM_LINES_Y; i++) {
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, gw->format_str_y_axis);
|
2007-01-21 20:14:35 +00:00
|
|
|
SetDParam64(1, y_label);
|
2007-01-21 18:42:15 +00:00
|
|
|
DrawStringRightAligned(x, y, STR_0170, GRAPH_AXIS_LABEL_COLOUR);
|
2007-01-21 20:14:35 +00:00
|
|
|
y_label -= (value / (GRAPH_NUM_LINES_Y - 1));
|
|
|
|
y += (gw->height / (GRAPH_NUM_LINES_Y - 1));
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
/* draw strings on the x axis */
|
|
|
|
if (gw->month != 0xFF) {
|
2007-01-21 20:14:35 +00:00
|
|
|
x = gw->left + GRAPH_X_POSITION_BEGINNING;
|
2004-08-09 17:04:08 +00:00
|
|
|
y = gw->top + gw->height + 1;
|
2007-01-21 20:34:28 +00:00
|
|
|
byte month = gw->month;
|
|
|
|
Year year = gw->year;
|
|
|
|
for (int i = 0; i < gw->num_on_x_axis; i++) {
|
|
|
|
SetDParam(0, month + STR_0162_JAN);
|
|
|
|
SetDParam(1, month + STR_0162_JAN + 2);
|
|
|
|
SetDParam(2, year);
|
|
|
|
DrawString(x, y, month == 0 ? STR_016F : STR_016E, GRAPH_AXIS_LABEL_COLOUR);
|
|
|
|
|
|
|
|
month += 3;
|
|
|
|
if (month >= 12) {
|
|
|
|
month = 0;
|
|
|
|
year++;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2007-01-21 20:14:35 +00:00
|
|
|
x += GRAPH_X_POSITION_SEPARATION;
|
2007-01-21 20:34:28 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
2007-01-22 16:26:45 +00:00
|
|
|
/* Draw the label under the data point rather than on the grid line. */
|
|
|
|
x = gw->left + GRAPH_X_POSITION_BEGINNING + (GRAPH_X_POSITION_SEPARATION / 2) + 1;
|
2004-08-09 17:04:08 +00:00
|
|
|
y = gw->top + gw->height + 1;
|
2007-01-21 19:19:25 +00:00
|
|
|
uint16 label = gw->x_values_start;
|
|
|
|
|
|
|
|
for (int i = 0; i < gw->num_on_x_axis; i++) {
|
|
|
|
SetDParam(0, label);
|
2007-01-22 16:26:45 +00:00
|
|
|
DrawStringCentered(x, y, STR_01CB, GRAPH_AXIS_LABEL_COLOUR);
|
|
|
|
|
2007-01-21 19:19:25 +00:00
|
|
|
label += gw->x_values_increment;
|
2007-01-21 20:14:35 +00:00
|
|
|
x += GRAPH_X_POSITION_SEPARATION;
|
2007-01-21 19:19:25 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* draw lines and dots */
|
2005-01-21 11:12:17 +00:00
|
|
|
sel = gw->sel; // show only selected lines. GraphDrawer qw->sel set in Graph-Legend (_legend_excludebits)
|
2007-01-21 20:34:28 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < gw->num_dataset; i++) {
|
2004-08-09 17:04:08 +00:00
|
|
|
if (!(sel & 1)) {
|
2007-01-21 20:14:35 +00:00
|
|
|
/* Centre the dot between the grid lines. */
|
|
|
|
x = gw->left + GRAPH_X_POSITION_BEGINNING + (GRAPH_X_POSITION_SEPARATION / 2);
|
2007-01-22 15:46:57 +00:00
|
|
|
|
2007-01-21 18:07:35 +00:00
|
|
|
byte color = gw->colors[i];
|
2004-09-13 20:38:36 +00:00
|
|
|
old_y = old_x = INVALID_VALUE;
|
2007-01-21 20:14:35 +00:00
|
|
|
|
2007-01-22 15:46:57 +00:00
|
|
|
for (int j = 0; j < gw->num_on_x_axis; j++) {
|
|
|
|
int64 datapoint = gw->cost[i][j];
|
|
|
|
|
|
|
|
if (datapoint != INVALID_VALUE) {
|
|
|
|
y = adj_height - BIGMULSS64(datapoint, y_scaling >> 1, 31) + gw->top;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
GfxFillRect(x-1, y-1, x+1, y+1, color);
|
2004-09-13 20:38:36 +00:00
|
|
|
if (old_x != INVALID_VALUE)
|
2004-08-09 17:04:08 +00:00
|
|
|
GfxDrawLine(old_x, old_y, x, y, color);
|
|
|
|
|
|
|
|
old_x = x;
|
|
|
|
old_y = y;
|
|
|
|
} else {
|
2004-09-13 20:38:36 +00:00
|
|
|
old_x = INVALID_VALUE;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2007-01-21 20:14:35 +00:00
|
|
|
x += GRAPH_X_POSITION_SEPARATION;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2007-01-21 20:34:28 +00:00
|
|
|
sel >>= 1;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************/
|
|
|
|
/* GRAPH LEGEND */
|
|
|
|
/****************/
|
|
|
|
|
|
|
|
static void GraphLegendWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
2005-09-30 20:37:25 +00:00
|
|
|
const Player* p;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-02-01 07:36:15 +00:00
|
|
|
switch (e->event) {
|
2006-10-03 20:16:20 +00:00
|
|
|
case WE_CREATE: {
|
2006-12-04 13:46:03 +00:00
|
|
|
uint i;
|
|
|
|
for (i = 3; i < w->widget_count; i++) {
|
|
|
|
if (!HASBIT(_legend_excludebits, i - 3)) LowerWindowWidget(w, i);
|
2006-10-03 20:16:20 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PAINT:
|
|
|
|
FOR_ALL_PLAYERS(p) {
|
2006-10-03 20:16:20 +00:00
|
|
|
if (!p->is_active) {
|
|
|
|
SETBIT(_legend_excludebits, p->index);
|
|
|
|
RaiseWindowWidget(w, p->index + 3);
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
DrawWindowWidgets(w);
|
|
|
|
|
|
|
|
FOR_ALL_PLAYERS(p) {
|
2005-11-14 19:48:04 +00:00
|
|
|
if (!p->is_active) continue;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DrawPlayerIcon(p->index, 4, 18+p->index*12);
|
|
|
|
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, p->name_1);
|
|
|
|
SetDParam(1, p->name_2);
|
|
|
|
SetDParam(2, GetPlayerNameString(p->index, 3));
|
2005-01-21 11:12:17 +00:00
|
|
|
DrawString(21,17+p->index*12,STR_7021,HASBIT(_legend_excludebits, p->index) ? 0x10 : 0xC);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WE_CLICK:
|
2006-09-23 02:39:24 +00:00
|
|
|
if (IS_INT_INSIDE(e->we.click.widget, 3, 11)) {
|
|
|
|
_legend_excludebits ^= (1 << (e->we.click.widget - 3));
|
2006-10-03 20:16:20 +00:00
|
|
|
ToggleWidgetLoweredState(w, e->we.click.widget);
|
2004-08-09 17:04:08 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
InvalidateWindow(WC_INCOME_GRAPH, 0);
|
|
|
|
InvalidateWindow(WC_OPERATING_PROFIT, 0);
|
|
|
|
InvalidateWindow(WC_DELIVERED_CARGO, 0);
|
|
|
|
InvalidateWindow(WC_PERFORMANCE_HISTORY, 0);
|
2004-08-25 18:28:57 +00:00
|
|
|
InvalidateWindow(WC_COMPANY_VALUE, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const Widget _graph_legend_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
2005-01-03 19:45:18 +00:00
|
|
|
{ WWT_CAPTION, RESIZE_NONE, 14, 11, 249, 0, 13, STR_704E_KEY_TO_COMPANY_GRAPHS, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
2006-10-24 14:15:17 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 249, 14, 113, 0x0, STR_NULL},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 2, 247, 16, 27, 0x0, STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 2, 247, 28, 39, 0x0, STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 2, 247, 40, 51, 0x0, STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 2, 247, 52, 63, 0x0, STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 2, 247, 64, 75, 0x0, STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 2, 247, 76, 87, 0x0, STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 2, 247, 88, 99, 0x0, STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 2, 247, 100, 111, 0x0, STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _graph_legend_desc = {
|
2006-11-10 19:24:14 +00:00
|
|
|
WDP_AUTO, WDP_AUTO, 250, 114,
|
2004-08-09 17:04:08 +00:00
|
|
|
WC_GRAPH_LEGEND,0,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
|
|
|
_graph_legend_widgets,
|
|
|
|
GraphLegendWndProc
|
|
|
|
};
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
static void ShowGraphLegend(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
AllocateWindowDescFront(&_graph_legend_desc, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/********************/
|
|
|
|
/* OPERATING PROFIT */
|
|
|
|
/********************/
|
|
|
|
|
|
|
|
static void SetupGraphDrawerForPlayers(GraphDrawer *gd)
|
|
|
|
{
|
2005-09-30 20:37:25 +00:00
|
|
|
const Player* p;
|
2005-01-21 11:12:17 +00:00
|
|
|
uint excludebits = _legend_excludebits;
|
2007-01-11 11:05:01 +00:00
|
|
|
byte nums;
|
2004-08-09 17:04:08 +00:00
|
|
|
int mo,yr;
|
|
|
|
|
2004-09-10 19:02:27 +00:00
|
|
|
// Exclude the players which aren't valid
|
2004-08-09 17:04:08 +00:00
|
|
|
FOR_ALL_PLAYERS(p) {
|
2005-01-21 11:12:17 +00:00
|
|
|
if (!p->is_active) SETBIT(excludebits,p->index);
|
2004-09-10 19:02:27 +00:00
|
|
|
}
|
2005-01-21 11:12:17 +00:00
|
|
|
gd->sel = excludebits;
|
2004-08-09 17:04:08 +00:00
|
|
|
gd->num_vert_lines = 24;
|
|
|
|
|
|
|
|
nums = 0;
|
|
|
|
FOR_ALL_PLAYERS(p) {
|
|
|
|
if (p->is_active) nums = max(nums,p->num_valid_stat_ent);
|
|
|
|
}
|
|
|
|
gd->num_on_x_axis = min(nums,24);
|
|
|
|
|
|
|
|
mo = (_cur_month/3-nums)*3;
|
|
|
|
yr = _cur_year;
|
|
|
|
while (mo < 0) {
|
|
|
|
yr--;
|
|
|
|
mo += 12;
|
|
|
|
}
|
|
|
|
|
|
|
|
gd->year = yr;
|
|
|
|
gd->month = mo;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void OperatingProfitWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
2006-02-01 07:36:15 +00:00
|
|
|
switch (e->event) {
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PAINT: {
|
|
|
|
GraphDrawer gd;
|
2005-09-30 20:37:25 +00:00
|
|
|
const Player* p;
|
2004-08-09 17:04:08 +00:00
|
|
|
int i,j;
|
|
|
|
int numd;
|
|
|
|
|
|
|
|
DrawWindowWidgets(w);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
gd.left = 2;
|
|
|
|
gd.top = 18;
|
|
|
|
gd.height = 136;
|
|
|
|
gd.include_neg = true;
|
2005-07-31 16:15:37 +00:00
|
|
|
gd.format_str_y_axis = STR_CURRCOMPACT;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
SetupGraphDrawerForPlayers(&gd);
|
|
|
|
|
2005-01-22 16:24:21 +00:00
|
|
|
numd = 0;
|
2004-08-09 17:04:08 +00:00
|
|
|
FOR_ALL_PLAYERS(p) {
|
2005-01-22 16:24:21 +00:00
|
|
|
if (p->is_active) {
|
2006-08-29 19:26:13 +00:00
|
|
|
gd.colors[numd] = _colour_gradient[p->player_color][6];
|
2006-02-01 07:36:15 +00:00
|
|
|
for (j = gd.num_on_x_axis, i = 0; --j >= 0;) {
|
2007-01-21 15:03:37 +00:00
|
|
|
gd.cost[numd][i] = (j >= p->num_valid_stat_ent) ? INVALID_VALUE : (p->old_economy[j].income + p->old_economy[j].expenses);
|
2005-01-22 16:24:21 +00:00
|
|
|
i++;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2005-01-22 16:24:21 +00:00
|
|
|
numd++;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2005-01-22 15:50:54 +00:00
|
|
|
|
2005-01-22 16:24:21 +00:00
|
|
|
gd.num_dataset = numd;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DrawGraph(&gd);
|
2004-09-13 20:38:36 +00:00
|
|
|
} break;
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_CLICK:
|
2006-09-23 02:39:24 +00:00
|
|
|
if (e->we.click.widget == 2) /* Clicked on Legend */
|
2004-08-09 17:04:08 +00:00
|
|
|
ShowGraphLegend();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const Widget _operating_profit_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
2005-01-03 19:45:18 +00:00
|
|
|
{ WWT_CAPTION, RESIZE_NONE, 14, 11, 525, 0, 13, STR_7025_OPERATING_PROFIT_GRAPH, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 14, 526, 575, 0, 13, STR_704C_KEY, STR_704D_SHOW_KEY_TO_GRAPHS},
|
2006-10-24 14:15:17 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 575, 14, 173, 0x0, STR_NULL},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _operating_profit_desc = {
|
2006-11-10 19:24:14 +00:00
|
|
|
WDP_AUTO, WDP_AUTO, 576, 174,
|
2004-08-09 17:04:08 +00:00
|
|
|
WC_OPERATING_PROFIT,0,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
|
|
|
_operating_profit_widgets,
|
|
|
|
OperatingProfitWndProc
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
void ShowOperatingProfitGraph(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
if (AllocateWindowDescFront(&_operating_profit_desc, 0)) {
|
|
|
|
InvalidateWindow(WC_GRAPH_LEGEND, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/****************/
|
|
|
|
/* INCOME GRAPH */
|
|
|
|
/****************/
|
|
|
|
|
|
|
|
static void IncomeGraphWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
2006-02-01 07:36:15 +00:00
|
|
|
switch (e->event) {
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PAINT: {
|
|
|
|
GraphDrawer gd;
|
2005-09-30 20:37:25 +00:00
|
|
|
const Player* p;
|
2004-08-09 17:04:08 +00:00
|
|
|
int i,j;
|
|
|
|
int numd;
|
|
|
|
|
|
|
|
DrawWindowWidgets(w);
|
|
|
|
|
|
|
|
gd.left = 2;
|
|
|
|
gd.top = 18;
|
|
|
|
gd.height = 104;
|
|
|
|
gd.include_neg = false;
|
2005-07-31 16:15:37 +00:00
|
|
|
gd.format_str_y_axis = STR_CURRCOMPACT;
|
2004-08-09 17:04:08 +00:00
|
|
|
SetupGraphDrawerForPlayers(&gd);
|
|
|
|
|
2005-01-22 16:24:21 +00:00
|
|
|
numd = 0;
|
2004-08-09 17:04:08 +00:00
|
|
|
FOR_ALL_PLAYERS(p) {
|
2005-01-22 16:24:21 +00:00
|
|
|
if (p->is_active) {
|
2006-08-29 19:26:13 +00:00
|
|
|
gd.colors[numd] = _colour_gradient[p->player_color][6];
|
2006-02-01 07:36:15 +00:00
|
|
|
for (j = gd.num_on_x_axis, i = 0; --j >= 0;) {
|
2007-01-21 15:03:37 +00:00
|
|
|
gd.cost[numd][i] = (j >= p->num_valid_stat_ent) ? INVALID_VALUE : p->old_economy[j].income;
|
2005-01-22 16:24:21 +00:00
|
|
|
i++;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2005-01-22 16:24:21 +00:00
|
|
|
numd++;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-01-22 16:24:21 +00:00
|
|
|
gd.num_dataset = numd;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DrawGraph(&gd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WE_CLICK:
|
2006-09-23 02:39:24 +00:00
|
|
|
if (e->we.click.widget == 2)
|
2004-08-09 17:04:08 +00:00
|
|
|
ShowGraphLegend();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const Widget _income_graph_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
2005-01-03 19:45:18 +00:00
|
|
|
{ WWT_CAPTION, RESIZE_NONE, 14, 11, 525, 0, 13, STR_7022_INCOME_GRAPH, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 14, 526, 575, 0, 13, STR_704C_KEY, STR_704D_SHOW_KEY_TO_GRAPHS},
|
2006-10-24 14:15:17 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 575, 14, 141, 0x0, STR_NULL},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _income_graph_desc = {
|
2006-11-10 19:24:14 +00:00
|
|
|
WDP_AUTO, WDP_AUTO, 576, 142,
|
2004-08-09 17:04:08 +00:00
|
|
|
WC_INCOME_GRAPH,0,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
|
|
|
_income_graph_widgets,
|
|
|
|
IncomeGraphWndProc
|
|
|
|
};
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
void ShowIncomeGraph(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
if (AllocateWindowDescFront(&_income_graph_desc, 0)) {
|
|
|
|
InvalidateWindow(WC_GRAPH_LEGEND, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************/
|
|
|
|
/* DELIVERED CARGO */
|
|
|
|
/*******************/
|
|
|
|
|
|
|
|
static void DeliveredCargoGraphWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
2006-02-01 07:36:15 +00:00
|
|
|
switch (e->event) {
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PAINT: {
|
|
|
|
GraphDrawer gd;
|
2005-09-30 20:37:25 +00:00
|
|
|
const Player* p;
|
2004-08-09 17:04:08 +00:00
|
|
|
int i,j;
|
|
|
|
int numd;
|
|
|
|
|
|
|
|
DrawWindowWidgets(w);
|
|
|
|
|
|
|
|
gd.left = 2;
|
|
|
|
gd.top = 18;
|
|
|
|
gd.height = 104;
|
|
|
|
gd.include_neg = false;
|
|
|
|
gd.format_str_y_axis = STR_7024;
|
|
|
|
SetupGraphDrawerForPlayers(&gd);
|
|
|
|
|
2005-01-22 16:24:21 +00:00
|
|
|
numd = 0;
|
2004-08-09 17:04:08 +00:00
|
|
|
FOR_ALL_PLAYERS(p) {
|
2005-01-22 16:24:21 +00:00
|
|
|
if (p->is_active) {
|
2006-08-29 19:26:13 +00:00
|
|
|
gd.colors[numd] = _colour_gradient[p->player_color][6];
|
2006-02-01 07:36:15 +00:00
|
|
|
for (j = gd.num_on_x_axis, i = 0; --j >= 0;) {
|
2007-01-21 15:03:37 +00:00
|
|
|
gd.cost[numd][i] = (j >= p->num_valid_stat_ent) ? INVALID_VALUE : p->old_economy[j].delivered_cargo;
|
2005-01-22 16:24:21 +00:00
|
|
|
i++;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2005-01-22 16:24:21 +00:00
|
|
|
numd++;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-01-22 16:24:21 +00:00
|
|
|
gd.num_dataset = numd;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DrawGraph(&gd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WE_CLICK:
|
2006-09-23 02:39:24 +00:00
|
|
|
if (e->we.click.widget == 2)
|
2004-08-09 17:04:08 +00:00
|
|
|
ShowGraphLegend();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const Widget _delivered_cargo_graph_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
2005-01-03 19:45:18 +00:00
|
|
|
{ WWT_CAPTION, RESIZE_NONE, 14, 11, 525, 0, 13, STR_7050_UNITS_OF_CARGO_DELIVERED, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 14, 526, 575, 0, 13, STR_704C_KEY, STR_704D_SHOW_KEY_TO_GRAPHS},
|
2006-10-24 14:15:17 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 575, 14, 141, 0x0, STR_NULL},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _delivered_cargo_graph_desc = {
|
2006-11-10 19:24:14 +00:00
|
|
|
WDP_AUTO, WDP_AUTO, 576, 142,
|
2004-08-09 17:04:08 +00:00
|
|
|
WC_DELIVERED_CARGO,0,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
|
|
|
_delivered_cargo_graph_widgets,
|
|
|
|
DeliveredCargoGraphWndProc
|
|
|
|
};
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
void ShowDeliveredCargoGraph(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
if (AllocateWindowDescFront(&_delivered_cargo_graph_desc, 0)) {
|
|
|
|
InvalidateWindow(WC_GRAPH_LEGEND, 0);
|
|
|
|
}
|
2004-08-23 10:59:03 +00:00
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
/***********************/
|
|
|
|
/* PERFORMANCE HISTORY */
|
|
|
|
/***********************/
|
|
|
|
|
|
|
|
static void PerformanceHistoryWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
2006-02-01 07:36:15 +00:00
|
|
|
switch (e->event) {
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PAINT: {
|
|
|
|
GraphDrawer gd;
|
2005-09-30 20:37:25 +00:00
|
|
|
const Player* p;
|
2004-08-09 17:04:08 +00:00
|
|
|
int i,j;
|
|
|
|
int numd;
|
|
|
|
|
|
|
|
DrawWindowWidgets(w);
|
|
|
|
|
|
|
|
gd.left = 2;
|
|
|
|
gd.top = 18;
|
|
|
|
gd.height = 200;
|
|
|
|
gd.include_neg = false;
|
|
|
|
gd.format_str_y_axis = STR_7024;
|
|
|
|
SetupGraphDrawerForPlayers(&gd);
|
|
|
|
|
2005-01-22 16:24:21 +00:00
|
|
|
numd = 0;
|
2004-08-09 17:04:08 +00:00
|
|
|
FOR_ALL_PLAYERS(p) {
|
2005-01-22 16:24:21 +00:00
|
|
|
if (p->is_active) {
|
2006-08-29 19:26:13 +00:00
|
|
|
gd.colors[numd] = _colour_gradient[p->player_color][6];
|
2006-02-01 07:36:15 +00:00
|
|
|
for (j = gd.num_on_x_axis, i = 0; --j >= 0;) {
|
2007-01-21 15:03:37 +00:00
|
|
|
gd.cost[numd][i] = (j >= p->num_valid_stat_ent) ? INVALID_VALUE : p->old_economy[j].performance_history;
|
2005-01-22 16:24:21 +00:00
|
|
|
i++;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2005-01-22 16:24:21 +00:00
|
|
|
numd++;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2005-01-22 15:50:54 +00:00
|
|
|
|
2005-01-22 16:24:21 +00:00
|
|
|
gd.num_dataset = numd;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DrawGraph(&gd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WE_CLICK:
|
2006-09-23 02:39:24 +00:00
|
|
|
if (e->we.click.widget == 2)
|
2004-08-09 17:04:08 +00:00
|
|
|
ShowGraphLegend();
|
2006-09-23 02:39:24 +00:00
|
|
|
if (e->we.click.widget == 3)
|
2004-08-23 10:59:03 +00:00
|
|
|
ShowPerformanceRatingDetail();
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const Widget _performance_history_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
|
|
|
{ WWT_CAPTION, RESIZE_NONE, 14, 11, 475, 0, 13, STR_7051_COMPANY_PERFORMANCE_RATINGS, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 14, 526, 575, 0, 13, STR_704C_KEY, STR_704D_SHOW_KEY_TO_GRAPHS},
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 14, 476, 525, 0, 13, STR_PERFORMANCE_DETAIL_KEY, STR_704D_SHOW_KEY_TO_GRAPHS},
|
2006-10-24 14:15:17 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 575, 14, 237, 0x0, STR_NULL},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _performance_history_desc = {
|
2006-11-10 19:24:14 +00:00
|
|
|
WDP_AUTO, WDP_AUTO, 576, 238,
|
2004-08-09 17:04:08 +00:00
|
|
|
WC_PERFORMANCE_HISTORY,0,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
|
|
|
_performance_history_widgets,
|
|
|
|
PerformanceHistoryWndProc
|
|
|
|
};
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
void ShowPerformanceHistoryGraph(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
if (AllocateWindowDescFront(&_performance_history_desc, 0)) {
|
|
|
|
InvalidateWindow(WC_GRAPH_LEGEND, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************/
|
|
|
|
/* COMPANY VALUE */
|
|
|
|
/*****************/
|
|
|
|
|
|
|
|
static void CompanyValueGraphWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
2006-02-01 07:36:15 +00:00
|
|
|
switch (e->event) {
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PAINT: {
|
|
|
|
GraphDrawer gd;
|
2005-09-30 20:37:25 +00:00
|
|
|
const Player* p;
|
2004-08-09 17:04:08 +00:00
|
|
|
int i,j;
|
|
|
|
int numd;
|
|
|
|
|
|
|
|
DrawWindowWidgets(w);
|
|
|
|
|
|
|
|
gd.left = 2;
|
|
|
|
gd.top = 18;
|
|
|
|
gd.height = 200;
|
|
|
|
gd.include_neg = false;
|
2005-07-31 16:15:37 +00:00
|
|
|
gd.format_str_y_axis = STR_CURRCOMPACT;
|
2004-08-09 17:04:08 +00:00
|
|
|
SetupGraphDrawerForPlayers(&gd);
|
|
|
|
|
2005-01-22 16:24:21 +00:00
|
|
|
numd = 0;
|
2004-08-09 17:04:08 +00:00
|
|
|
FOR_ALL_PLAYERS(p) {
|
2005-01-22 16:24:21 +00:00
|
|
|
if (p->is_active) {
|
2006-08-29 19:26:13 +00:00
|
|
|
gd.colors[numd] = _colour_gradient[p->player_color][6];
|
2006-02-01 07:36:15 +00:00
|
|
|
for (j = gd.num_on_x_axis, i = 0; --j >= 0;) {
|
2007-01-21 15:03:37 +00:00
|
|
|
gd.cost[numd][i] = (j >= p->num_valid_stat_ent) ? INVALID_VALUE : p->old_economy[j].company_value;
|
2005-01-22 16:24:21 +00:00
|
|
|
i++;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2005-01-22 16:24:21 +00:00
|
|
|
numd++;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-01-22 16:24:21 +00:00
|
|
|
gd.num_dataset = numd;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DrawGraph(&gd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WE_CLICK:
|
2006-09-23 02:39:24 +00:00
|
|
|
if (e->we.click.widget == 2)
|
2004-08-09 17:04:08 +00:00
|
|
|
ShowGraphLegend();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const Widget _company_value_graph_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
|
|
|
{ WWT_CAPTION, RESIZE_NONE, 14, 11, 525, 0, 13, STR_7052_COMPANY_VALUES, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 14, 526, 575, 0, 13, STR_704C_KEY, STR_704D_SHOW_KEY_TO_GRAPHS},
|
2006-10-24 14:15:17 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 575, 14, 237, 0x0, STR_NULL},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _company_value_graph_desc = {
|
2006-11-10 19:24:14 +00:00
|
|
|
WDP_AUTO, WDP_AUTO, 576, 238,
|
2004-08-09 17:04:08 +00:00
|
|
|
WC_COMPANY_VALUE,0,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
|
|
|
_company_value_graph_widgets,
|
|
|
|
CompanyValueGraphWndProc
|
|
|
|
};
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
void ShowCompanyValueGraph(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
if (AllocateWindowDescFront(&_company_value_graph_desc, 0)) {
|
|
|
|
InvalidateWindow(WC_GRAPH_LEGEND, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************/
|
|
|
|
/* PAYMENT RATES */
|
|
|
|
/*****************/
|
|
|
|
|
|
|
|
static void CargoPaymentRatesWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
2006-02-01 07:36:15 +00:00
|
|
|
switch (e->event) {
|
2006-10-03 20:16:20 +00:00
|
|
|
case WE_CREATE: {
|
2006-12-04 13:46:03 +00:00
|
|
|
uint i;
|
|
|
|
for (i = 3; i < w->widget_count; i++) {
|
|
|
|
if (!HASBIT(_legend_cargobits, i - 3)) LowerWindowWidget(w, i);
|
2006-10-03 20:16:20 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PAINT: {
|
2006-03-26 22:23:32 +00:00
|
|
|
int j, x, y;
|
|
|
|
CargoID i;
|
2004-08-09 17:04:08 +00:00
|
|
|
GraphDrawer gd;
|
|
|
|
|
|
|
|
DrawWindowWidgets(w);
|
|
|
|
|
|
|
|
x = 495;
|
2006-10-21 23:08:17 +00:00
|
|
|
y = 24;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-10-03 20:16:20 +00:00
|
|
|
gd.sel = _legend_cargobits;
|
2004-08-09 17:04:08 +00:00
|
|
|
gd.left = 2;
|
|
|
|
gd.top = 24;
|
|
|
|
gd.height = 104;
|
|
|
|
gd.include_neg = false;
|
2005-07-31 16:15:37 +00:00
|
|
|
gd.format_str_y_axis = STR_CURRCOMPACT;
|
2005-01-22 16:24:21 +00:00
|
|
|
gd.num_dataset = NUM_CARGO;
|
2004-08-09 17:04:08 +00:00
|
|
|
gd.num_on_x_axis = 20;
|
|
|
|
gd.num_vert_lines = 20;
|
|
|
|
gd.month = 0xFF;
|
2007-01-21 19:19:25 +00:00
|
|
|
gd.x_values_start = 10;
|
|
|
|
gd.x_values_increment = 10;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2006-02-01 07:36:15 +00:00
|
|
|
for (i = 0; i != NUM_CARGO; i++) {
|
2006-10-15 03:40:53 +00:00
|
|
|
/* Since the buttons have no text, no images,
|
|
|
|
* both the text and the colored box have to be manually painted.
|
|
|
|
* clk_dif will move one pixel down and one pixel to the right
|
|
|
|
* when the button is clicked */
|
|
|
|
byte clk_dif = IsWindowWidgetLowered(w, i + 3) ? 1 : 0;
|
|
|
|
|
|
|
|
GfxFillRect(x + clk_dif, y + clk_dif, x + 8 + clk_dif, y + 5 + clk_dif, 0);
|
2006-12-09 00:37:02 +00:00
|
|
|
GfxFillRect(x + 1 + clk_dif, y + 1 + clk_dif, x + 7 + clk_dif, y + 4 + clk_dif, _cargo_colours[i]);
|
2006-05-09 17:10:26 +00:00
|
|
|
SetDParam(0, _cargoc.names_s[i]);
|
2006-10-15 03:40:53 +00:00
|
|
|
DrawString(x + 14 + clk_dif, y + clk_dif, STR_7065, 0);
|
2006-05-09 17:10:26 +00:00
|
|
|
y += 8;
|
2006-12-09 00:37:02 +00:00
|
|
|
gd.colors[i] = _cargo_colours[i];
|
2006-02-01 07:36:15 +00:00
|
|
|
for (j = 0; j != 20; j++) {
|
2007-01-21 15:03:37 +00:00
|
|
|
gd.cost[i][j] = GetTransportedGoodsIncome(10, 20, j * 6 + 6, i);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DrawGraph(&gd);
|
|
|
|
|
|
|
|
DrawString(2 + 46, 24 + gd.height + 7, STR_7062_DAYS_IN_TRANSIT, 0);
|
|
|
|
DrawString(2 + 84, 24 - 9, STR_7063_PAYMENT_FOR_DELIVERING, 0);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case WE_CLICK: {
|
2006-09-23 02:39:24 +00:00
|
|
|
switch (e->we.click.widget) {
|
2004-08-09 17:04:08 +00:00
|
|
|
case 3: case 4: case 5: case 6:
|
|
|
|
case 7: case 8: case 9: case 10:
|
|
|
|
case 11: case 12: case 13: case 14:
|
2006-10-03 20:16:20 +00:00
|
|
|
TOGGLEBIT(_legend_cargobits, e->we.click.widget - 3);
|
|
|
|
ToggleWidgetLoweredState(w, e->we.click.widget);
|
2004-08-09 17:04:08 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const Widget _cargo_payment_rates_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
|
|
|
{ WWT_CAPTION, RESIZE_NONE, 14, 11, 567, 0, 13, STR_7061_CARGO_PAYMENT_RATES, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 567, 14, 141, 0x0, STR_NULL},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 12, 493, 562, 24, 31, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 12, 493, 562, 32, 39, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 12, 493, 562, 40, 47, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 12, 493, 562, 48, 55, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 12, 493, 562, 56, 63, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 12, 493, 562, 64, 71, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 12, 493, 562, 72, 79, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 12, 493, 562, 80, 87, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 12, 493, 562, 88, 95, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 12, 493, 562, 96, 103, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 12, 493, 562, 104, 111, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 12, 493, 562, 112, 119, 0x0, STR_7064_TOGGLE_GRAPH_FOR_CARGO},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _cargo_payment_rates_desc = {
|
2006-11-10 19:24:14 +00:00
|
|
|
WDP_AUTO, WDP_AUTO, 568, 142,
|
2004-08-09 17:04:08 +00:00
|
|
|
WC_PAYMENT_RATES,0,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
|
|
|
_cargo_payment_rates_widgets,
|
|
|
|
CargoPaymentRatesWndProc
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
void ShowCargoPaymentRates(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
AllocateWindowDescFront(&_cargo_payment_rates_desc, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************/
|
|
|
|
/* COMPANY LEAGUE TABLE */
|
|
|
|
/************************/
|
|
|
|
|
|
|
|
static const StringID _performance_titles[] = {
|
|
|
|
STR_7066_ENGINEER,
|
|
|
|
STR_7066_ENGINEER,
|
|
|
|
STR_7067_TRAFFIC_MANAGER,
|
|
|
|
STR_7067_TRAFFIC_MANAGER,
|
|
|
|
STR_7068_TRANSPORT_COORDINATOR,
|
|
|
|
STR_7068_TRANSPORT_COORDINATOR,
|
|
|
|
STR_7069_ROUTE_SUPERVISOR,
|
|
|
|
STR_7069_ROUTE_SUPERVISOR,
|
|
|
|
STR_706A_DIRECTOR,
|
|
|
|
STR_706A_DIRECTOR,
|
|
|
|
STR_706B_CHIEF_EXECUTIVE,
|
|
|
|
STR_706B_CHIEF_EXECUTIVE,
|
|
|
|
STR_706C_CHAIRMAN,
|
|
|
|
STR_706C_CHAIRMAN,
|
|
|
|
STR_706D_PRESIDENT,
|
|
|
|
STR_706E_TYCOON,
|
|
|
|
};
|
|
|
|
|
2005-01-11 00:54:06 +00:00
|
|
|
static inline StringID GetPerformanceTitleFromValue(uint value)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-01-11 00:54:06 +00:00
|
|
|
return _performance_titles[minu(value, 1000) >> 6];
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-11-16 12:10:45 +00:00
|
|
|
static int CDECL PerfHistComp(const void* elem1, const void* elem2)
|
|
|
|
{
|
|
|
|
const Player* p1 = *(const Player* const*)elem1;
|
|
|
|
const Player* p2 = *(const Player* const*)elem2;
|
|
|
|
|
|
|
|
return p2->old_economy[1].performance_history - p1->old_economy[1].performance_history;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void CompanyLeagueWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
2005-10-02 22:39:56 +00:00
|
|
|
switch (e->event) {
|
2005-11-16 12:10:45 +00:00
|
|
|
case WE_PAINT: {
|
|
|
|
const Player* plist[MAX_PLAYERS];
|
|
|
|
const Player* p;
|
|
|
|
uint pl_num;
|
|
|
|
uint i;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-11-16 12:10:45 +00:00
|
|
|
DrawWindowWidgets(w);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2005-11-16 12:10:45 +00:00
|
|
|
pl_num = 0;
|
|
|
|
FOR_ALL_PLAYERS(p) if (p->is_active) plist[pl_num++] = p;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2005-11-17 22:56:50 +00:00
|
|
|
qsort((void*)plist, pl_num, sizeof(*plist), PerfHistComp);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-11-16 12:10:45 +00:00
|
|
|
for (i = 0; i != pl_num; i++) {
|
|
|
|
p = plist[i];
|
|
|
|
SetDParam(0, i + STR_01AC_1ST);
|
|
|
|
SetDParam(1, p->name_1);
|
|
|
|
SetDParam(2, p->name_2);
|
|
|
|
SetDParam(3, GetPlayerNameString(p->index, 4));
|
|
|
|
SetDParam(5, GetPerformanceTitleFromValue(p->old_economy[1].performance_history));
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-11-16 12:10:45 +00:00
|
|
|
DrawString(2, 15 + i * 10, i == 0 ? STR_7054 : STR_7055, 0);
|
|
|
|
DrawPlayerIcon(p->index, 27, 16 + i * 10);
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-11-16 12:10:45 +00:00
|
|
|
break;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const Widget _company_league_widgets[] = {
|
2006-01-22 10:00:04 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
|
|
|
{ WWT_CAPTION, RESIZE_NONE, 14, 11, 387, 0, 13, STR_7053_COMPANY_LEAGUE_TABLE, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
|
|
|
{ WWT_STICKYBOX, RESIZE_NONE, 14, 388, 399, 0, 13, STR_NULL, STR_STICKY_BUTTON},
|
2006-10-24 14:15:17 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 399, 14, 96, 0x0, STR_NULL},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _company_league_desc = {
|
2006-11-10 19:24:14 +00:00
|
|
|
WDP_AUTO, WDP_AUTO, 400, 97,
|
2004-08-09 17:04:08 +00:00
|
|
|
WC_COMPANY_LEAGUE,0,
|
2006-01-22 10:00:04 +00:00
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
2004-08-09 17:04:08 +00:00
|
|
|
_company_league_widgets,
|
|
|
|
CompanyLeagueWndProc
|
|
|
|
};
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
void ShowCompanyLeagueTable(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
AllocateWindowDescFront(&_company_league_desc,0);
|
|
|
|
}
|
2005-01-22 16:24:21 +00:00
|
|
|
|
|
|
|
/*****************************/
|
|
|
|
/* PERFORMANCE RATING DETAIL */
|
|
|
|
/*****************************/
|
|
|
|
|
|
|
|
static void PerformanceRatingDetailWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
2007-01-10 18:56:51 +00:00
|
|
|
static PlayerID _performance_rating_detail_player = PLAYER_FIRST;
|
2006-10-03 20:16:20 +00:00
|
|
|
|
2006-02-01 07:36:15 +00:00
|
|
|
switch (e->event) {
|
2006-02-16 20:51:06 +00:00
|
|
|
case WE_PAINT: {
|
2006-10-03 20:16:20 +00:00
|
|
|
byte x;
|
2006-02-18 14:41:24 +00:00
|
|
|
uint16 y = 14;
|
2006-02-16 20:51:06 +00:00
|
|
|
int total_score = 0;
|
|
|
|
int color_done, color_notdone;
|
2005-01-22 16:24:21 +00:00
|
|
|
|
2006-02-16 20:51:06 +00:00
|
|
|
// Draw standard stuff
|
|
|
|
DrawWindowWidgets(w);
|
2005-01-22 16:24:21 +00:00
|
|
|
|
2006-02-16 20:51:06 +00:00
|
|
|
// Paint the player icons
|
2007-01-10 18:56:51 +00:00
|
|
|
for (PlayerID i = PLAYER_FIRST; i < MAX_PLAYERS; i++) {
|
2006-02-16 20:51:06 +00:00
|
|
|
if (!GetPlayer(i)->is_active) {
|
|
|
|
// Check if we have the player as an active player
|
2006-10-03 02:08:15 +00:00
|
|
|
if (!IsWindowWidgetDisabled(w, i + 13)) {
|
2006-02-16 20:51:06 +00:00
|
|
|
// Bah, player gone :(
|
2006-10-03 02:08:15 +00:00
|
|
|
DisableWindowWidget(w, i + 13);
|
2006-02-16 20:51:06 +00:00
|
|
|
// Is this player selected? If so, select first player (always save? :s)
|
2006-10-03 20:16:20 +00:00
|
|
|
if (IsWindowWidgetLowered(w, i + 13)) {
|
|
|
|
RaiseWindowWidget(w, i + 13);
|
|
|
|
LowerWindowWidget(w, 13);
|
2007-01-10 18:56:51 +00:00
|
|
|
_performance_rating_detail_player = PLAYER_FIRST;
|
2006-10-03 20:16:20 +00:00
|
|
|
}
|
2006-02-16 20:51:06 +00:00
|
|
|
// We need a repaint
|
|
|
|
SetWindowDirty(w);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if we have the player marked as inactive
|
2006-10-03 02:08:15 +00:00
|
|
|
if (IsWindowWidgetDisabled(w, i + 13)) {
|
2006-02-16 20:51:06 +00:00
|
|
|
// New player! Yippie :p
|
2006-10-03 02:08:15 +00:00
|
|
|
EnableWindowWidget(w, i + 13);
|
2006-02-16 20:51:06 +00:00
|
|
|
// We need a repaint
|
|
|
|
SetWindowDirty(w);
|
|
|
|
}
|
2005-01-22 16:24:21 +00:00
|
|
|
|
2006-10-03 20:16:20 +00:00
|
|
|
x = (i == _performance_rating_detail_player) ? 1 : 0;
|
2006-02-16 20:51:06 +00:00
|
|
|
DrawPlayerIcon(i, i * 37 + 13 + x, 16 + x);
|
2005-01-22 16:24:21 +00:00
|
|
|
}
|
|
|
|
|
2006-02-16 20:51:06 +00:00
|
|
|
// The colors used to show how the progress is going
|
2006-08-29 19:26:13 +00:00
|
|
|
color_done = _colour_gradient[COLOUR_GREEN][4];
|
|
|
|
color_notdone = _colour_gradient[COLOUR_RED][4];
|
2006-02-16 20:51:06 +00:00
|
|
|
|
|
|
|
// Draw all the score parts
|
2007-01-10 18:56:51 +00:00
|
|
|
for (ScoreID i = SCORE_BEGIN; i < SCORE_END; i++) {
|
2006-10-03 20:16:20 +00:00
|
|
|
int val = _score_part[_performance_rating_detail_player][i];
|
2006-02-18 14:41:24 +00:00
|
|
|
int needed = _score_info[i].needed;
|
|
|
|
int score = _score_info[i].score;
|
|
|
|
|
2006-02-16 20:51:06 +00:00
|
|
|
y += 20;
|
|
|
|
// SCORE_TOTAL has his own rulez ;)
|
|
|
|
if (i == SCORE_TOTAL) {
|
|
|
|
needed = total_score;
|
|
|
|
score = SCORE_MAX;
|
|
|
|
} else {
|
|
|
|
total_score += score;
|
|
|
|
}
|
2005-01-22 16:24:21 +00:00
|
|
|
|
2006-02-16 20:51:06 +00:00
|
|
|
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
|
2006-02-18 14:41:24 +00:00
|
|
|
if (val > needed) {
|
|
|
|
x = 50;
|
|
|
|
} else if (val == 0) {
|
|
|
|
x = 0;
|
|
|
|
} else {
|
|
|
|
x = val * 50 / needed;
|
|
|
|
}
|
2006-02-16 20:51:06 +00:00
|
|
|
|
|
|
|
// SCORE_LOAN is inversed
|
2006-02-18 14:41:24 +00:00
|
|
|
if (val < 0 && i == SCORE_LOAN) x = 0;
|
2006-02-16 20:51:06 +00:00
|
|
|
|
|
|
|
// Draw the bar
|
2006-02-18 14:41:24 +00:00
|
|
|
if (x != 0) GfxFillRect(112, y - 2, 112 + x, y + 10, color_done);
|
|
|
|
if (x != 50) GfxFillRect(112 + x, y - 2, 112 + 50, y + 10, color_notdone);
|
2006-02-16 20:51:06 +00:00
|
|
|
|
|
|
|
// Calculate the %
|
2006-02-18 14:41:24 +00:00
|
|
|
x = (val <= needed) ? val * 100 / needed : 100;
|
2006-02-16 20:51:06 +00:00
|
|
|
|
|
|
|
// SCORE_LOAN is inversed
|
2006-02-18 14:41:24 +00:00
|
|
|
if (val < 0 && i == SCORE_LOAN) x = 0;
|
2006-02-16 20:51:06 +00:00
|
|
|
|
|
|
|
// Draw it
|
|
|
|
SetDParam(0, x);
|
|
|
|
DrawStringCentered(137, y, STR_PERFORMANCE_DETAIL_PERCENT, 0);
|
|
|
|
|
|
|
|
// SCORE_LOAN is inversed
|
2006-02-18 14:41:24 +00:00
|
|
|
if (i == SCORE_LOAN) val = needed - val;
|
2006-02-16 20:51:06 +00:00
|
|
|
|
|
|
|
// 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);
|
|
|
|
}
|
2005-01-22 16:24:21 +00:00
|
|
|
}
|
2006-02-16 20:51:06 +00:00
|
|
|
|
|
|
|
break;
|
2005-01-22 16:24:21 +00:00
|
|
|
}
|
|
|
|
|
2006-02-16 20:51:06 +00:00
|
|
|
case WE_CLICK:
|
|
|
|
// Check which button is clicked
|
2006-09-23 02:39:24 +00:00
|
|
|
if (IS_INT_INSIDE(e->we.click.widget, 13, 21)) {
|
2006-02-16 20:51:06 +00:00
|
|
|
// Is it no on disable?
|
2006-10-03 02:08:15 +00:00
|
|
|
if (!IsWindowWidgetDisabled(w, e->we.click.widget)) {
|
2006-10-03 20:16:20 +00:00
|
|
|
RaiseWindowWidget(w, _performance_rating_detail_player + 13);
|
2007-01-10 18:56:51 +00:00
|
|
|
_performance_rating_detail_player = (PlayerID)(e->we.click.widget - 13);
|
2006-10-03 20:16:20 +00:00
|
|
|
LowerWindowWidget(w, _performance_rating_detail_player + 13);
|
2006-02-16 20:51:06 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WE_CREATE: {
|
2007-01-10 18:56:51 +00:00
|
|
|
PlayerID i;
|
2006-02-16 20:51:06 +00:00
|
|
|
Player *p2;
|
2006-10-02 00:28:31 +00:00
|
|
|
|
2006-10-03 02:08:15 +00:00
|
|
|
/* Disable the players who are not active */
|
2007-01-10 18:56:51 +00:00
|
|
|
for (i = PLAYER_FIRST; i < MAX_PLAYERS; i++) {
|
2006-10-03 02:08:15 +00:00
|
|
|
SetWindowWidgetDisabledState(w, i + 13, !GetPlayer(i)->is_active);
|
2006-02-16 20:51:06 +00:00
|
|
|
}
|
2006-10-03 20:16:20 +00:00
|
|
|
/* Update all player stats with the current data
|
|
|
|
* (this is because _score_info is not saved to a savegame) */
|
2006-02-18 14:41:24 +00:00
|
|
|
FOR_ALL_PLAYERS(p2) {
|
|
|
|
if (p2->is_active) UpdateCompanyRatingAndValue(p2, false);
|
|
|
|
}
|
2006-02-16 20:51:06 +00:00
|
|
|
|
|
|
|
w->custom[0] = DAY_TICKS;
|
|
|
|
w->custom[1] = 5;
|
|
|
|
|
2007-01-10 18:56:51 +00:00
|
|
|
_performance_rating_detail_player = PLAYER_FIRST;
|
2006-10-03 20:16:20 +00:00
|
|
|
LowerWindowWidget(w, _performance_rating_detail_player + 13);
|
2005-01-22 16:24:21 +00:00
|
|
|
SetWindowDirty(w);
|
2006-02-16 20:51:06 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WE_TICK: {
|
|
|
|
// Update the player score every 5 days
|
|
|
|
if (--w->custom[0] == 0) {
|
|
|
|
w->custom[0] = DAY_TICKS;
|
|
|
|
if (--w->custom[1] == 0) {
|
|
|
|
Player *p2;
|
2006-02-18 14:41:24 +00:00
|
|
|
|
2006-02-16 20:51:06 +00:00
|
|
|
w->custom[1] = 5;
|
2006-02-18 14:41:24 +00:00
|
|
|
FOR_ALL_PLAYERS(p2) {
|
2006-02-16 20:51:06 +00:00
|
|
|
// Skip if player is not active
|
2006-02-18 14:41:24 +00:00
|
|
|
if (p2->is_active) UpdateCompanyRatingAndValue(p2, false);
|
|
|
|
}
|
2006-02-16 20:51:06 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2005-01-22 16:24:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const Widget _performance_rating_detail_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
|
|
|
{ WWT_CAPTION, RESIZE_NONE, 14, 11, 298, 0, 13, STR_PERFORMANCE_DETAIL, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
2006-10-24 14:15:17 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 298, 14, 27, 0x0, STR_NULL},
|
|
|
|
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 298, 28, 47, 0x0, STR_PERFORMANCE_DETAIL_VEHICLES_TIP},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 298, 48, 67, 0x0, STR_PERFORMANCE_DETAIL_STATIONS_TIP},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 298, 68, 87, 0x0, STR_PERFORMANCE_DETAIL_MIN_PROFIT_TIP},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 298, 88, 107, 0x0, STR_PERFORMANCE_DETAIL_MIN_INCOME_TIP},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 298, 108, 127, 0x0, STR_PERFORMANCE_DETAIL_MAX_INCOME_TIP},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 298, 128, 147, 0x0, STR_PERFORMANCE_DETAIL_DELIVERED_TIP},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 298, 148, 167, 0x0, STR_PERFORMANCE_DETAIL_CARGO_TIP},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 298, 168, 187, 0x0, STR_PERFORMANCE_DETAIL_MONEY_TIP},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 298, 188, 207, 0x0, STR_PERFORMANCE_DETAIL_LOAN_TIP},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 298, 208, 227, 0x0, STR_PERFORMANCE_DETAIL_TOTAL_TIP},
|
|
|
|
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 2, 38, 14, 26, 0x0, STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 39, 75, 14, 26, 0x0, STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 76, 112, 14, 26, 0x0, STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 113, 149, 14, 26, 0x0, STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 150, 186, 14, 26, 0x0, STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 187, 223, 14, 26, 0x0, STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 224, 260, 14, 26, 0x0, STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 261, 297, 14, 26, 0x0, STR_704F_CLICK_HERE_TO_TOGGLE_COMPANY},
|
2005-01-22 16:24:21 +00:00
|
|
|
{ WIDGETS_END},
|
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _performance_rating_detail_desc = {
|
2006-11-10 19:24:14 +00:00
|
|
|
WDP_AUTO, WDP_AUTO, 299, 228,
|
2005-01-22 16:24:21 +00:00
|
|
|
WC_PERFORMANCE_DETAIL,0,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
|
|
|
_performance_rating_detail_widgets,
|
|
|
|
PerformanceRatingDetailWndProc
|
|
|
|
};
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
void ShowPerformanceRatingDetail(void)
|
2005-01-22 16:24:21 +00:00
|
|
|
{
|
|
|
|
AllocateWindowDescFront(&_performance_rating_detail_desc, 0);
|
|
|
|
}
|