summaryrefslogtreecommitdiffhomepage
path: root/Stars45/KeyDlg.cpp
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-01 21:23:39 +0200
committerAki <please@ignore.pl>2022-04-01 21:23:39 +0200
commit3c487c5cd69c53d6fea948643c0a76df03516605 (patch)
tree72730c7b8b26a5ef8fc9a987ec4c16129efd5aac /Stars45/KeyDlg.cpp
parent8f353abd0bfe18baddd8a8250ab7c4f2d1c83a6e (diff)
downloadstarshatter-3c487c5cd69c53d6fea948643c0a76df03516605.zip
starshatter-3c487c5cd69c53d6fea948643c0a76df03516605.tar.gz
starshatter-3c487c5cd69c53d6fea948643c0a76df03516605.tar.bz2
Moved Stars45 to StarsEx
Diffstat (limited to 'Stars45/KeyDlg.cpp')
-rw-r--r--Stars45/KeyDlg.cpp197
1 files changed, 0 insertions, 197 deletions
diff --git a/Stars45/KeyDlg.cpp b/Stars45/KeyDlg.cpp
deleted file mode 100644
index cbd7c68..0000000
--- a/Stars45/KeyDlg.cpp
+++ /dev/null
@@ -1,197 +0,0 @@
-/* Starshatter: The Open Source Project
- Copyright (c) 2021-2022, 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 "KeyDlg.h"
-#include "KeyMap.h"
-#include "MenuScreen.h"
-#include "Starshatter.h"
-#include "FormatUtil.h"
-
-#include "Game.h"
-#include "ListBox.h"
-#include "ComboBox.h"
-#include "Button.h"
-#include "Joystick.h"
-
-// +--------------------------------------------------------------------+
-// DECLARE MAPPING FUNCTIONS:
-
-DEF_MAP_CLIENT(KeyDlg, OnApply);
-DEF_MAP_CLIENT(KeyDlg, OnCancel);
-DEF_MAP_CLIENT(KeyDlg, OnClear);
-
-// +--------------------------------------------------------------------+
-
-KeyDlg::KeyDlg(Screen* s, FormDef& def, BaseScreen* mgr)
-: FormWindow(s, 0, 0, s->Width(), s->Height()), manager(mgr),
-key_key(0), key_shift(0), key_joy(0), key_clear(0),
-command(0), current_key(0), new_key(0), clear(0),
-apply(0), cancel(0)
-{
- Init(def);
-}
-
-KeyDlg::~KeyDlg()
-{
-}
-
-void
-KeyDlg::RegisterControls()
-{
- if (apply)
- return;
-
- command = FindControl(201);
- current_key = FindControl(202);
- new_key = FindControl(203);
-
- clear = (Button*) FindControl(300);
- REGISTER_CLIENT(EID_CLICK, clear, KeyDlg, OnClear);
-
- apply = (Button*) FindControl(1);
- REGISTER_CLIENT(EID_CLICK, apply, KeyDlg, OnApply);
-
- cancel = (Button*) FindControl(2);
- REGISTER_CLIENT(EID_CLICK, cancel, KeyDlg, OnCancel);
-}
-
-// +--------------------------------------------------------------------+
-
-void
-KeyDlg::ExecFrame()
-{
- int key = 0;
- int shift = 0;
- int joy = 0;
- Joystick* joystick = Joystick::GetInstance();
-
- if (joystick) joystick->Acquire();
-
- for (int i = 0; i < 256; i++) {
- int vk = KeyMap::GetMappableVKey(i);
-
- if (vk >= KEY_JOY_1 && vk <= KEY_JOY_16) {
- if (joystick && joystick->KeyDown(vk))
- joy = vk;
- }
-
- else if (vk >= KEY_POV_0_UP && vk <= KEY_POV_3_RIGHT) {
- if (joystick && joystick->KeyDown(vk))
- joy = vk;
- }
-
- else if (GetAsyncKeyState(vk)) {
- if (vk == VK_SHIFT || vk == VK_MENU)
- shift = vk;
- else
- key = vk;
- }
- }
-
- if (key) {
- key_key = key;
- key_shift = shift;
-
- new_key->SetText(KeyMap::DescribeKey(key, shift, joy));
- }
-
- else if (joy) {
- key_joy = joy;
- new_key->SetText(KeyMap::DescribeKey(key, shift, joy));
- }
-}
-
-// +--------------------------------------------------------------------+
-
-void
-KeyDlg::Show()
-{
- FormWindow::Show();
-
- Starshatter* stars = Starshatter::GetInstance();
-
- if (stars) {
- KeyMap& keymap = stars->GetKeyMap();
-
- if (command)
- command->SetText(keymap.DescribeAction(key_index));
-
- if (current_key)
- current_key->SetText(keymap.DescribeKey(key_index));
- }
-
- key_clear = false;
- new_key->SetText("");
- SetFocus();
-}
-
-// +--------------------------------------------------------------------+
-
-void
-KeyDlg::SetKeyMapIndex(int i)
-{
- key_index = i;
- key_key = 0;
- key_shift = 0;
-}
-
-// +--------------------------------------------------------------------+
-
-void
-KeyDlg::OnClear(AWEvent* event)
-{
- key_clear = true;
-
- key_key = 0;
- key_shift = 0;
- key_joy = 0;
-}
-
-// +--------------------------------------------------------------------+
-
-void
-KeyDlg::OnApply(AWEvent* event)
-{
- Starshatter* stars = Starshatter::GetInstance();
-
- if (stars) {
- KeyMap& keymap = stars->GetKeyMap();
- KeyMapEntry* map = keymap.GetKeyMap(key_index);
-
- if (key_clear) {
- map->key = 0;
- map->alt = 0;
- map->joy = 0;
- }
-
- if (key_key) {
- map->key = key_key;
- map->alt = key_shift;
- }
-
- if (key_joy) {
- map->joy = key_joy;
- }
- }
-
- if (manager)
- manager->ShowCtlDlg();
-}
-
-void
-KeyDlg::OnCancel(AWEvent* event)
-{
- if (manager)
- manager->ShowCtlDlg();
-}
-
-// +--------------------------------------------------------------------+