summaryrefslogtreecommitdiff
path: root/src/gui/windows/textcommandeditor.cpp
blob: f5391fc9d7f27550ad3270f89e0e6ddd1f3b5c72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
/*
 *  The ManaPlus Client
 *  Copyright (C) 2009  The Mana World Development Team
 *  Copyright (C) 2009-2010  Andrei Karas
 *  Copyright (C) 2011-2020  The ManaPlus Developers
 *  Copyright (C) 2020-2023  The ManaVerse Developers
 *
 *  This file is part of The ManaPlus Client.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "gui/windows/textcommandeditor.h"

#include "spellmanager.h"
#include "textcommand.h"

#include "input/keyboardconfig.h"

#include "gui/models/iconsmodel.h"
#include "gui/models/targettypemodel.h"

#include "gui/widgets/button.h"
#include "gui/widgets/containerplacer.h"
#include "gui/widgets/dropdown.h"
#include "gui/widgets/inttextfield.h"
#include "gui/widgets/label.h"
#include "gui/widgets/layoutcell.h"

#ifdef TMWA_SUPPORT
#include "gui/models/magicschoolmodel.h"

#include "gui/widgets/radiobutton.h"
#endif  // TMWA_SUPPORT

#include "utils/delete2.h"

#include "debug.h"

#ifdef TMWA_SUPPORT
const unsigned int MAGIC_START_ID = 340;
#endif  // TMWA_SUPPORT

TextCommandEditor::TextCommandEditor(TextCommand *const command) :
    // TRANSLATORS: command editor name
    Window(_("Command Editor"), Modal_false, nullptr, "commandeditor.xml"),
    ActionListener(),
#ifdef TMWA_SUPPORT
    mIsMagicCommand(command != nullptr ?
        (command->getCommandType() == TextCommandType::Magic) : false),
#endif  // TMWA_SUPPORT
    mCommand(command),
#ifdef TMWA_SUPPORT
    // TRANSLATORS: command editor button
    mIsMagic(new RadioButton(this, _("magic"), "magic", mIsMagicCommand)),
    // TRANSLATORS: command editor button
    mIsOther(new RadioButton(this, _("other"), "magic", !mIsMagicCommand)),
#endif  // TMWA_SUPPORT
    // TRANSLATORS: command editor label
    mSymbolLabel(new Label(this, _("Symbol:"))),
    mSymbolTextField(new TextField(this, std::string(),
        LoseFocusOnTab_true, nullptr, std::string(), false)),
    // TRANSLATORS: command editor label
    mCommandLabel(new Label(this, _("Command:"))),
    mCommandTextField(new TextField(this, std::string(),
        LoseFocusOnTab_true, nullptr, std::string(), false)),
    // TRANSLATORS: command editor label
    mCommentLabel(new Label(this, _("Comment:"))),
    mCommentTextField(new TextField(this, std::string(),
         LoseFocusOnTab_true, nullptr, std::string(), false)),
    mTargetTypeModel(new TargetTypeModel),
    // TRANSLATORS: command editor label
    mTypeLabel(new Label(this, _("Target Type:"))),
    mTypeDropDown(new DropDown(this, mTargetTypeModel,
        false, Modal_false, nullptr, std::string())),
    mIconsModel(new IconsModel),
    // TRANSLATORS: command editor label
    mIconLabel(new Label(this, _("Icon:"))),
    mIconDropDown(new DropDown(this, mIconsModel,
        false, Modal_false, nullptr, std::string())),
#ifdef TMWA_SUPPORT
    // TRANSLATORS: command editor label
    mManaLabel(new Label(this, _("Mana:"))),
    mManaField(new IntTextField(this, 0, 0, 0, Enable_true, 0)),
    // TRANSLATORS: command editor label
    mMagicLvlLabel(new Label(this, _("Magic level:"))),
    mMagicLvlField(new IntTextField(this, 0, 0, 0, Enable_true, 0)),
    mMagicSchoolModel(new MagicSchoolModel),
    // TRANSLATORS: command editor label
    mSchoolLabel(new Label(this, _("Magic School:"))),
    mSchoolDropDown(new DropDown(this, mMagicSchoolModel,
        false, Modal_false, nullptr, std::string())),
    // TRANSLATORS: command editor label
    mSchoolLvlLabel(new Label(this, _("School level:"))),
    mSchoolLvlField(new IntTextField(this, 0, 0, 0, Enable_true, 0)),
#endif  // TMWA_SUPPORT
    // TRANSLATORS: command editor button
    mCancelButton(new Button(this, _("Cancel"), "cancel", BUTTON_SKIN, this)),
    // TRANSLATORS: command editor button
    mSaveButton(new Button(this, _("Save"), "save", BUTTON_SKIN, this)),
    // TRANSLATORS: command editor button
    mDeleteButton(new Button(this, _("Delete"), "delete", BUTTON_SKIN, this)),
    mEnabledKeyboard(keyboard.isEnabled())
{
    const int w = 350;
    const int h = 370;

    keyboard.setEnabled(false);

    setWindowName("TextCommandEditor");
    setDefaultSize(w, h, ImagePosition::CENTER, 0, 0);

#ifdef TMWA_SUPPORT
    mIsMagic->setActionEventId("magic");
    mIsMagic->addActionListener(this);

    mIsOther->setActionEventId("other");
    mIsOther->addActionListener(this);

    mManaField->setRange(0, 500);
    mManaField->setWidth(20);

    mMagicLvlField->setRange(0, 5);
    mMagicLvlField->setWidth(20);

    mSchoolDropDown->setActionEventId("school");
    mSchoolDropDown->addActionListener(this);
    mSchoolDropDown->setSelected(0);

    mSchoolLvlField->setRange(0, 5);
    mSchoolLvlField->setWidth(20);
#endif  // TMWA_SUPPORT

    mTypeDropDown->setActionEventId("type");
    mTypeDropDown->addActionListener(this);

    mIconDropDown->setActionEventId("icon");
    mIconDropDown->addActionListener(this);
    if (mCommand != nullptr)
        mIconDropDown->setSelectedString(mCommand->getIcon());

    mSaveButton->adjustSize();
    mCancelButton->adjustSize();
    mDeleteButton->adjustSize();

    if (command != nullptr)
    {
#ifdef TMWA_SUPPORT
        if (command->getCommandType() == TextCommandType::Magic)
            showControls(Visible_true);
        else
            showControls(Visible_false);

        mManaField->setValue(command->getMana());
        mMagicLvlField->setValue(command->getBaseLvl());
        mSchoolDropDown->setSelected(CAST_S32(command->getSchool())
            - MAGIC_START_ID);
        mSchoolLvlField->setValue(command->getSchoolLvl());
#endif  // TMWA_SUPPORT

        mSymbolTextField->setText(command->getSymbol());
        mCommandTextField->setText(command->getCommand());
        mCommentTextField->setText(command->getComment());
        mTypeDropDown->setSelected(CAST_S32(command->getTargetType()));
    }

    ContainerPlacer placer(nullptr, nullptr);
    placer = getPlacer(0, 0);

#ifdef TMWA_SUPPORT
    placer(0, 0, mIsMagic, 1, 1);
    placer(2, 0, mIsOther, 1, 1);
    placer(0, 1, mSymbolLabel, 2, 1).setPadding(3);
    placer(2, 1, mSymbolTextField, 3, 1).setPadding(3);
    placer(0, 2, mCommandLabel, 2, 1).setPadding(3);
    placer(2, 2, mCommandTextField, 4, 1).setPadding(3);

    placer(0, 3, mCommentLabel, 2, 1).setPadding(3);
    placer(2, 3, mCommentTextField, 4, 1).setPadding(3);

    placer(0, 4, mTypeLabel, 2, 1).setPadding(3);
    placer(2, 4, mTypeDropDown, 3, 1).setPadding(3);

    placer(0, 5, mIconLabel, 2, 1).setPadding(3);
    placer(2, 5, mIconDropDown, 3, 1).setPadding(3);

    placer(0, 6, mManaLabel, 2, 1).setPadding(3);
    placer(2, 6, mManaField, 3, 1).setPadding(3);
    placer(0, 7, mMagicLvlLabel, 2, 1).setPadding(3);
    placer(2, 7, mMagicLvlField, 3, 1).setPadding(3);

    placer(0, 8, mSchoolLabel, 2, 1).setPadding(3);
    placer(2, 8, mSchoolDropDown, 3, 1).setPadding(3);
    placer(0, 9, mSchoolLvlLabel, 2, 1).setPadding(3);
    placer(2, 9, mSchoolLvlField, 3, 1).setPadding(3);

    placer(0, 10, mSaveButton, 2, 1).setPadding(3);
    placer(2, 10, mCancelButton, 2, 1).setPadding(3);
    placer(4, 10, mDeleteButton, 2, 1).setPadding(3);
#else  // TMWA_SUPPORT

    placer(0, 0, mSymbolLabel, 2, 1).setPadding(3);
    placer(2, 0, mSymbolTextField, 3, 1).setPadding(3);
    placer(0, 1, mCommandLabel, 2, 1).setPadding(3);
    placer(2, 1, mCommandTextField, 4, 1).setPadding(3);

    placer(0, 2, mCommentLabel, 2, 1).setPadding(3);
    placer(2, 2, mCommentTextField, 4, 1).setPadding(3);

    placer(0, 3, mTypeLabel, 2, 1).setPadding(3);
    placer(2, 3, mTypeDropDown, 3, 1).setPadding(3);

    placer(0, 4, mIconLabel, 2, 1).setPadding(3);
    placer(2, 4, mIconDropDown, 3, 1).setPadding(3);

    placer(0, 5, mSaveButton, 2, 1).setPadding(3);
    placer(2, 5, mCancelButton, 2, 1).setPadding(3);
    placer(4, 5, mDeleteButton, 2, 1).setPadding(3);
#endif  // TMWA_SUPPORT

    setWidth(w);
    setHeight(h);

    reflowLayout(w, 0);

    center();
}

void TextCommandEditor::postInit()
{
    Window::postInit();
    enableVisibleSound(true);
    setVisible(Visible_true);
}

TextCommandEditor::~TextCommandEditor()
{
    delete2(mIconsModel)
    delete2(mTargetTypeModel)
#ifdef TMWA_SUPPORT
    delete2(mMagicSchoolModel)
#endif  // TMWA_SUPPORT
}

void TextCommandEditor::action(const ActionEvent &event)
{
    const std::string &eventId = event.getId();
    if (eventId == "save")
    {
        save();
        scheduleDelete();
    }
    else if (eventId == "cancel")
    {
        scheduleDelete();
    }
    else if (eventId == "delete")
    {
        deleteCommand();
        scheduleDelete();
    }
#ifdef TMWA_SUPPORT
    else if (eventId == "magic")
    {
        mIsMagicCommand = true;
        showControls(Visible_true);
    }
    else if (eventId == "other")
    {
        mIsMagicCommand = false;
        showControls(Visible_false);
    }
#endif  // TMWA_SUPPORT
}

#ifdef TMWA_SUPPORT
void TextCommandEditor::showControls(const Visible show)
{
    mManaField->setVisible(show);
    mManaLabel->setVisible(show);
    mMagicLvlLabel->setVisible(show);
    mMagicLvlField->setVisible(show);
    mSchoolLabel->setVisible(show);
    mSchoolDropDown->setVisible(show);
    mSchoolLvlLabel->setVisible(show);
    mSchoolLvlField->setVisible(show);
}
#endif  // TMWA_SUPPORT

void TextCommandEditor::scheduleDelete()
{
    keyboard.setEnabled(mEnabledKeyboard);
    Window::scheduleDelete();
}

void TextCommandEditor::save()
{
    if (mCommand == nullptr)
        return;
#ifdef TMWA_SUPPORT
    if (mIsMagicCommand)
        mCommand->setCommandType(TextCommandType::Magic);
    else
        mCommand->setCommandType(TextCommandType::Text);
#endif  // TMWA_SUPPORT

    mCommand->setSymbol(mSymbolTextField->getText());
    mCommand->setCommand(mCommandTextField->getText());
    mCommand->setComment(mCommentTextField->getText());
    mCommand->setTargetType(
            static_cast<CommandTargetT>(mTypeDropDown->getSelected()));
    mCommand->setIcon(mIconDropDown->getSelectedString());

#ifdef TMWA_SUPPORT
    mCommand->setMana(mManaField->getValue());
    mCommand->setBaseLvl(mMagicLvlField->getValue());
    mCommand->setSchool(static_cast<MagicSchoolT>(
            mSchoolDropDown->getSelected() + MAGIC_START_ID));
    mCommand->setSchoolLvl(mSchoolLvlField->getValue());
#endif  // TMWA_SUPPORT

    if (spellManager != nullptr)
        spellManager->save();
}

void TextCommandEditor::deleteCommand()
{
    if (mCommand == nullptr)
        return;
    mCommand->setSymbol("");
    mCommand->setCommand("");
    mCommand->setComment("");
    mCommand->setTargetType(CommandTarget::NoTarget);
    mCommand->setIcon("");
#ifdef TMWA_SUPPORT
    mCommand->setCommandType(TextCommandType::Text);
    mCommand->setMana(0);
    mCommand->setBaseLvl(0);
    mCommand->setSchool(MagicSchool::SkillMagic);
    mCommand->setSchoolLvl(0);
#endif  // TMWA_SUPPORT

    if (spellManager != nullptr)
        spellManager->save();
}