From e33e19d0587146859d48a134ec9fd94e7b7ba5cd Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Thu, 8 Dec 2011 14:53:40 +0000 Subject: Initial upload --- Stars45/LoadDlg.cpp | 77 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 Stars45/LoadDlg.cpp (limited to 'Stars45/LoadDlg.cpp') diff --git a/Stars45/LoadDlg.cpp b/Stars45/LoadDlg.cpp new file mode 100644 index 0000000..313aa22 --- /dev/null +++ b/Stars45/LoadDlg.cpp @@ -0,0 +1,77 @@ +/* Project Starshatter 4.5 + Destroyer Studios LLC + Copyright © 1997-2004. All Rights Reserved. + + SUBSYSTEM: Stars.exe + FILE: LoadDlg.cpp + AUTHOR: John DiCamillo + + + OVERVIEW + ======== + Loading progress dialog box +*/ + + +#include "MemDebug.h" +#include "LoadDlg.h" +#include "Starshatter.h" + +#include "Game.h" +#include "DataLoader.h" +#include "Video.h" +#include "Keyboard.h" +#include "Mouse.h" +#include "ListBox.h" +#include "ComboBox.h" +#include "Slider.h" +#include "FormatUtil.h" + +// +--------------------------------------------------------------------+ + +LoadDlg::LoadDlg(Screen* s, FormDef& def) + : FormWindow(s, 0, 0, s->Width(), s->Height()), + progress(0), activity(0) +{ + Init(def); +} + +LoadDlg::~LoadDlg() +{ +} + +void +LoadDlg::RegisterControls() +{ + title = FindControl(100); + activity = FindControl(101); + progress = (Slider*) FindControl(102); +} + +// +--------------------------------------------------------------------+ + +void +LoadDlg::ExecFrame() +{ + Starshatter* stars = Starshatter::GetInstance(); + + if (stars) { + if (title) { + if (stars->GetGameMode() == Starshatter::CLOD_MODE || + stars->GetGameMode() == Starshatter::CMPN_MODE) + title->SetText(Game::GetText("LoadDlg.campaign")); + + else if (stars->GetGameMode() == Starshatter::MENU_MODE) + title->SetText(Game::GetText("LoadDlg.tac-ref")); + + else + title->SetText(Game::GetText("LoadDlg.mission")); + } + + activity->SetText(stars->GetLoadActivity()); + progress->SetValue(stars->GetLoadProgress()); + } +} + +// +--------------------------------------------------------------------+ + -- cgit v1.1