summaryrefslogtreecommitdiff
path: root/src/industry_gui.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2010-10-04 19:14:43 +0000
committerfrosch <frosch@openttd.org>2010-10-04 19:14:43 +0000
commita0a51c2ac13f90179a7fe476dc4e67dc27040816 (patch)
tree8c61f038eb5b1a7a6ad48336ec553b5c79497da5 /src/industry_gui.cpp
parent2e8e14826274cd1a1037ffc5f8663b9cb6ce609b (diff)
downloadopenttd-a0a51c2ac13f90179a7fe476dc4e67dc27040816.tar.xz
(svn r20895) -Codechange: Use an enum to identify the rows of buttons in the industryview.
Diffstat (limited to 'src/industry_gui.cpp')
-rw-r--r--src/industry_gui.cpp55
1 files changed, 36 insertions, 19 deletions
diff --git a/src/industry_gui.cpp b/src/industry_gui.cpp
index bc8911283..49715b6a1 100644
--- a/src/industry_gui.cpp
+++ b/src/industry_gui.cpp
@@ -639,8 +639,15 @@ enum IndustryViewWidgets {
class IndustryViewWindow : public Window
{
- byte editbox_line; ///< The line clicked to open the edit box
- byte clicked_line; ///< The line of the button that has been clicked
+ /** Specific lines in the info panel */
+ enum InfoLine {
+ IL_NONE, ///< No line
+ IL_RATE1, ///< Production rate of cargo 1
+ IL_RATE2, ///< Production rate of cargo 2
+ };
+
+ InfoLine editbox_line; ///< The line clicked to open the edit box
+ InfoLine clicked_line; ///< The line of the button that has been clicked
byte clicked_button; ///< The button that has been clicked (to raise)
int production_offset_y; ///< The offset of the production texts/buttons
int info_height; ///< Height needed for the #IVW_INFO panel
@@ -649,8 +656,8 @@ public:
IndustryViewWindow(const WindowDesc *desc, WindowNumber window_number) : Window()
{
this->flags4 |= WF_DISABLE_VP_SCROLL;
- this->editbox_line = 0;
- this->clicked_line = 0;
+ this->editbox_line = IL_NONE;
+ this->clicked_line = IL_NONE;
this->clicked_button = 0;
this->info_height = WD_FRAMERECT_TOP + 2 * FONT_HEIGHT_NORMAL + WD_FRAMERECT_BOTTOM + 1; // Info panel has at least two lines text.
@@ -743,7 +750,7 @@ public:
DrawString(x, right - WD_FRAMERECT_RIGHT, y, STR_INDUSTRY_VIEW_TRANSPORTED);
/* Let's put out those buttons.. */
if (IsProductionAlterable(i)) {
- DrawArrowButtons(left + WD_FRAMETEXT_LEFT, y, COLOUR_YELLOW, (this->clicked_line == j + 1) ? this->clicked_button : 0,
+ DrawArrowButtons(left + WD_FRAMETEXT_LEFT, y, COLOUR_YELLOW, (this->clicked_line == IL_RATE1 + j) ? this->clicked_button : 0,
i->production_rate[j] > 0, i->production_rate[j] < 255);
}
y += FONT_HEIGHT_NORMAL;
@@ -784,36 +791,47 @@ public:
switch (widget) {
case IVW_INFO: {
Industry *i = Industry::Get(this->window_number);
+ InfoLine line = IL_NONE;
+
+ if (pt.y >= this->production_offset_y) {
+ int row = (pt.y - this->production_offset_y) / FONT_HEIGHT_NORMAL;
+ for (uint j = 0; j < lengthof(i->produced_cargo); j++) {
+ if (i->produced_cargo[j] == CT_INVALID) continue;
+ row--;
+ if (row < 0) {
+ line = (InfoLine)(IL_RATE1 + j);
+ break;
+ }
+ }
+ }
+ if (line == IL_NONE) return;
- /* We should work if needed.. */
- if (!IsProductionAlterable(i)) return;
uint x = pt.x;
- int line = (pt.y - this->production_offset_y) / FONT_HEIGHT_NORMAL;
- if (pt.y >= this->production_offset_y && IsInsideMM(line, 0, 2) && i->produced_cargo[line] != CT_INVALID) {
+ if (IsProductionAlterable(i)) {
NWidgetBase *nwi = this->GetWidget<NWidgetBase>(widget);
uint left = nwi->pos_x + WD_FRAMETEXT_LEFT;
uint right = nwi->pos_x + nwi->current_x - 1 - WD_FRAMERECT_RIGHT;
if (IsInsideMM(x, left, left + 20) ) {
/* Clicked buttons, decrease or increase production */
if (x < left + 10) {
- if (i->production_rate[line] <= 0) return;
- i->production_rate[line] = max(i->production_rate[line] / 2, 0);
+ if (i->production_rate[line - IL_RATE1] <= 0) return;
+ i->production_rate[line - IL_RATE1] = max(i->production_rate[line - IL_RATE1] / 2, 0);
} else {
+ if (i->production_rate[line - IL_RATE1] >= 255) return;
/* a zero production industry is unlikely to give anything but zero, so push it a little bit */
- int new_prod = i->production_rate[line] == 0 ? 1 : i->production_rate[line] * 2;
- if (i->production_rate[line] >= 255) return;
- i->production_rate[line] = minu(new_prod, 255);
+ int new_prod = i->production_rate[line - IL_RATE1] == 0 ? 1 : i->production_rate[line - IL_RATE1] * 2;
+ i->production_rate[line - IL_RATE1] = minu(new_prod, 255);
}
UpdateIndustryProduction(i);
this->SetDirty();
this->flags4 |= WF_TIMEOUT_BEGIN;
- this->clicked_line = line + 1;
+ this->clicked_line = line;
this->clicked_button = (x < left + 10 ? 1 : 2);
} else if (IsInsideMM(x, left + 30, right)) {
/* clicked the text */
this->editbox_line = line;
- SetDParam(0, i->production_rate[line] * 8);
+ SetDParam(0, i->production_rate[line - IL_RATE1] * 8);
ShowQueryString(STR_JUST_INT, STR_CONFIG_GAME_PRODUCTION, 10, 100, this, CS_ALPHANUMERAL, QSF_NONE);
}
}
@@ -840,7 +858,7 @@ public:
virtual void OnTimeout()
{
- this->clicked_line = 0;
+ this->clicked_line = IL_NONE;
this->clicked_button = 0;
this->SetDirty();
}
@@ -858,9 +876,8 @@ public:
if (StrEmpty(str)) return;
Industry *i = Industry::Get(this->window_number);
- int line = this->editbox_line;
- i->production_rate[line] = ClampU(atoi(str) / 8, 0, 255);
+ i->production_rate[this->editbox_line - IL_RATE1] = ClampU(atoi(str) / 8, 0, 255);
UpdateIndustryProduction(i);
this->SetDirty();
}