summaryrefslogtreecommitdiffhomepage
path: root/StarsEx/CmpCompleteDlg.cpp
blob: 421093db17a5d9ac143f37c334d990eeab205dab (plain)
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
/*  Starshatter: The Open Source Project
    Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
    Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
    Copyright (c) 1997-2006, Destroyer Studios LLC.

    AUTHOR:       John DiCamillo


    OVERVIEW
    ========
*/

#include "CmpCompleteDlg.h"
#include "CmpnScreen.h"
#include "Campaign.h"
#include "CombatEvent.h"

#include "Game.h"
#include "DataLoader.h"
#include "Video.h"
#include "Keyboard.h"
#include "Mouse.h"
#include "ImageBox.h"
#include "Button.h"
#include "FormatUtil.h"

// +--------------------------------------------------------------------+
// DECLARE MAPPING FUNCTIONS:

DEF_MAP_CLIENT(CmpCompleteDlg, OnClose);

// +--------------------------------------------------------------------+

CmpCompleteDlg::CmpCompleteDlg(Screen* s, FormDef& def, CmpnScreen* mgr)
: FormWindow(s, 0, 0, s->Width(), s->Height()), manager(mgr),
lbl_info(0), img_title(0), btn_close(0)
{
    Init(def);
}

CmpCompleteDlg::~CmpCompleteDlg()
{
}

void
CmpCompleteDlg::RegisterControls()
{
    img_title    = (ImageBox*) FindControl(100);
    lbl_info     =             FindControl(101);
    btn_close    = (Button*)   FindControl(1);

    REGISTER_CLIENT(EID_CLICK, btn_close, CmpCompleteDlg, OnClose);
}

void
CmpCompleteDlg::Show()
{
    FormWindow::Show();

    Campaign* c = Campaign::GetCampaign();

    if (img_title && c) {
        DataLoader*    loader = DataLoader::GetLoader();
        CombatEvent*   event  = c->GetLastEvent();
        char           img_name[256];

        if (event) {
            strcpy_s(img_name, event->ImageFile());

            if (!strstr(img_name, ".pcx")) {
                strcat_s(img_name, ".pcx");
            }

            if (loader) {
                loader->SetDataPath(c->Path());
                loader->LoadBitmap(img_name, banner);
                loader->SetDataPath(0);

                Rect tgt_rect;
                tgt_rect.w = img_title->Width();
                tgt_rect.h = img_title->Height();

                img_title->SetTargetRect(tgt_rect);
                img_title->SetPicture(banner);
            }
        }
    }
}

// +--------------------------------------------------------------------+

void
CmpCompleteDlg::ExecFrame()
{
}

// +--------------------------------------------------------------------+

void
CmpCompleteDlg::OnClose(AWEvent* event)
{
    if (manager)
    manager->ShowCmdDlg();
}