summaryrefslogtreecommitdiffhomepage
path: root/Stars45/CmpCompleteDlg.cpp
blob: 0e47a8953b37c293f7d66422ce3c8b49e0558c41 (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
105
106
107
108
/*  Project Starshatter 4.5
    Destroyer Studios LLC
    Copyright © 1997-2004. All Rights Reserved.

    SUBSYSTEM:    Stars.exe
    FILE:         CmpCompleteDlg.cpp
    AUTHOR:       John DiCamillo


    OVERVIEW
    ========
*/

#include "MemDebug.h"
#include "CmpCompleteDlg.h"
#include "CmpnScreen.h"
#include "Campaign.h"
#include "CombatEvent.h"
#include "Starshatter.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();
      Starshatter*   stars  = Starshatter::GetInstance();
      CombatEvent*   event  = c->GetLastEvent();
      char           img_name[256];

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

         if (!strstr(img_name, ".pcx")) {
            strcat(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();
}