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 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701
|
/*
* Copyright (C) Volition, Inc. 1999. All rights reserved.
*
* All source code herein is the property of Volition, Inc. You may not sell
* or otherwise commercially exploit the source or things you created based on the
* source.
*
*/
#ifdef _WIN32
#include <windows.h>
#include <windowsx.h>
#endif
#include "controlconfig/controlsconfig.h"
#include "graphics/2d.h"
#include "io/mouse.h"
#include "options/Option.h"
#include "scripting/scripting.h"
#include "scripting/global_hooks.h"
#include "scripting/hook_api.h"
#define THREADED // to use the proper set of macros
#include "osapi/osapi.h"
#include "cmdline/cmdline.h"
#include "gamesequence/gamesequence.h"
int mouse_inited = 0;
LOCAL int Mouse_x;
LOCAL int Mouse_y;
LOCAL int Mouse_wheel_x;
LOCAL int Mouse_wheel_y;
SDL_mutex* mouse_lock;
int mouse_flags;
int mouse_left_pressed = 0;
int mouse_right_pressed = 0;
int mouse_middle_pressed = 0;
int mouse_x1_pressed = 0;
int mouse_x2_pressed = 0;
int mouse_left_up = 0;
int mouse_right_up = 0;
int mouse_middle_up = 0;
int mouse_x1_up = 0;
int mouse_x2_up = 0;
int Mouse_dx = 0;
int Mouse_dy = 0;
int Mouse_dz = 0;
int Mouse_sensitivity = 4;
static auto MouseSensitivityOption __UNUSED = options::OptionBuilder<int>("Input.MouseSensitivity",
std::pair<const char*, int>{"Sensitivity", 1374},
std::pair<const char*, int>{"The sensitivity of the mouse input", 1747})
.category("Input")
.range(0, 9)
.level(options::ExpertLevel::Beginner)
.default_val(4)
.bind_to(&Mouse_sensitivity)
.importance(0)
.finish();
bool Use_mouse_to_fly = false;
static SCP_string mouse_mode_display(bool mode) { return mode ? XSTR("Joy-0", 1699) : XSTR("Mouse", 1774); }
static auto UseMouseOption __UNUSED = options::OptionBuilder<bool>("Input.UseMouse",
std::pair<const char*, int>{"Mouse", 1373},
std::pair<const char*, int>{"Whether or not to use the mouse for flying", 1765})
.category("Input")
.display(mouse_mode_display)
.level(options::ExpertLevel::Beginner)
.default_val(false)
.bind_to(&Use_mouse_to_fly)
.importance(1)
.finish();
const std::shared_ptr<scripting::Hook<>> OnMouseWheelHook = scripting::Hook<>::Factory(
"On Mouse Wheel", "Called when the mouse wheel is moved in any direction.",
{
{"MouseWheelY", "number", "Positive if moved up, negative if moved down."},
{"MouseWheelX", "number", "Positive if moved right, negative if moved left."},
});
#define SCALE_MOUSE_TO_WINDOW(x, y, op) \
static_cast<decltype(x)>(Cmdline_window_res ? static_cast<float>(x) op (static_cast<float>(gr_screen.max_w) / static_cast<float>(Cmdline_window_res->first)) : x), \
static_cast<decltype(y)>(Cmdline_window_res ? static_cast<float>(y) op (static_cast<float>(gr_screen.max_h) / static_cast<float>(Cmdline_window_res->second)) : y)
namespace
{
bool mouse_key_event_handler(const SDL_Event& e)
{
if (!os::events::isWindowEvent(e, os::getSDLMainWindow())) {
return false;
}
switch (e.button.button) {
case SDL_BUTTON_LEFT:
mouse_mark_button(MOUSE_LEFT_BUTTON, e.button.state);
break;
case SDL_BUTTON_RIGHT:
mouse_mark_button(MOUSE_RIGHT_BUTTON, e.button.state);
break;
case SDL_BUTTON_MIDDLE:
mouse_mark_button(MOUSE_MIDDLE_BUTTON, e.button.state);
break;
case SDL_BUTTON_X1:
mouse_mark_button(MOUSE_X1_BUTTON, e.button.state);
break;
case SDL_BUTTON_X2:
mouse_mark_button(MOUSE_X2_BUTTON, e.button.state);
break;
default:
// SDL gave us an unknown button. Just log it
mprintf(("Unknown SDL button %i\n", e.button.button));
}
return true;
}
bool mouse_motion_event_handler(const SDL_Event& e)
{
if (!os::events::isWindowEvent(e, os::getSDLMainWindow())) {
return false;
}
mouse_event(SCALE_MOUSE_TO_WINDOW(e.motion.x, e.motion.y, *), SCALE_MOUSE_TO_WINDOW(e.motion.xrel, e.motion.yrel, *));
return true;
}
bool mouse_wheel_event_handler(const SDL_Event& e)
{
if (!os::events::isWindowEvent(e, os::getSDLMainWindow())) {
return false;
}
#if SDL_VERSION_ATLEAST(2, 0, 4)
mousewheel_motion(e.wheel.x, e.wheel.y, e.wheel.direction == SDL_MOUSEWHEEL_FLIPPED);
#else
mousewheel_motion(e.wheel.x, e.wheel.y, false);
#endif
return true;
}
}
void mouse_force_pos(int x, int y);
/**
* @brief Decays the mousewheel position back to 0 and clears the appropriate flags when nuetral
* @param[in] btn The button (wheel direction) to check against
*/
void mousewheel_decay(int btn);
static bool Mouse_in_focus = true;
void mouse_close()
{
if (!mouse_inited)
return;
mouse_inited = 0;
SDL_DestroyMutex( mouse_lock );
}
void mouse_init()
{
// Initialize queue
if ( mouse_inited ) return;
mouse_inited = 1;
mouse_lock = SDL_CreateMutex();
SDL_LockMutex( mouse_lock );
mouse_flags = 0;
Mouse_x = gr_screen.max_w / 2;
Mouse_y = gr_screen.max_h / 2;
Mouse_wheel_x = 0;
Mouse_wheel_y = 0;
// we do want to make sure that button presses go through event polling though
// (should be on by default already, just here as a reminder)
SDL_EventState( SDL_MOUSEBUTTONDOWN, SDL_ENABLE );
SDL_EventState( SDL_MOUSEBUTTONUP, SDL_ENABLE );
SDL_EventState( SDL_MOUSEWHEEL, SDL_ENABLE );
SDL_UnlockMutex( mouse_lock );
os::events::addEventListener(SDL_MOUSEBUTTONDOWN, os::events::DEFAULT_LISTENER_WEIGHT, mouse_key_event_handler);
os::events::addEventListener(SDL_MOUSEBUTTONUP, os::events::DEFAULT_LISTENER_WEIGHT, mouse_key_event_handler);
os::events::addEventListener(SDL_MOUSEMOTION, os::events::DEFAULT_LISTENER_WEIGHT, mouse_motion_event_handler);
os::events::addEventListener(SDL_MOUSEWHEEL, os::events::DEFAULT_LISTENER_WEIGHT, mouse_wheel_event_handler);
atexit( mouse_close );
}
/******************************************************************************
* @brief Marks a mouse button as up or down
*
* @param[in] flags Which button(s) are pressed/released
* @param[in] set Direction of the button(s). 1 = pressed, 0 = released
*
* @note This function is extern'ed by osapi.cpp and freespace.cpp
*/
void mouse_mark_button( uint flags, int set)
{
if ( !mouse_inited ) return;
SDL_LockMutex( mouse_lock );
if ( !(mouse_flags & MOUSE_LEFT_BUTTON) ) {
if ( (flags & MOUSE_LEFT_BUTTON) && (set == 1) ) {
mouse_left_pressed++;
}
}
else {
if ( (flags & MOUSE_LEFT_BUTTON) && (set == 0) ){
mouse_left_up++;
}
}
if ( !(mouse_flags & MOUSE_RIGHT_BUTTON) ) {
if ( (flags & MOUSE_RIGHT_BUTTON) && (set == 1) ){
mouse_right_pressed++;
}
}
else {
if ( (flags & MOUSE_RIGHT_BUTTON) && (set == 0) ){
mouse_right_up++;
}
}
if ( !(mouse_flags & MOUSE_MIDDLE_BUTTON) ) {
if ( (flags & MOUSE_MIDDLE_BUTTON) && (set == 1) ){
mouse_middle_pressed++;
}
}
else {
if ( (flags & MOUSE_MIDDLE_BUTTON) && (set == 0) ){
mouse_middle_up++;
}
}
if (!(mouse_flags & MOUSE_X1_BUTTON)) {
if ((flags & MOUSE_X1_BUTTON) && (set == 1)) {
mouse_x1_pressed++;
}
} else {
if ((flags & MOUSE_X1_BUTTON) && (set == 0)) {
mouse_x1_up++;
}
}
if (!(mouse_flags & MOUSE_X2_BUTTON)) {
if ((flags & MOUSE_X2_BUTTON) && (set == 1)) {
mouse_x2_pressed++;
}
} else {
if ((flags & MOUSE_X2_BUTTON) && (set == 0)) {
mouse_x2_up++;
}
}
if ( set ){
mouse_flags |= flags;
} else {
mouse_flags &= ~flags;
}
SDL_UnlockMutex( mouse_lock );
Script_system.SetHookVar("MouseButton", 'i', flags);
if (scripting::hooks::OnMousePressed->isActive() || scripting::hooks::OnMouseReleased->isActive()) {
//WMC - On Mouse Pressed and On Mouse Released hooks
if (set == 1) {
scripting::hooks::OnMousePressed->run();
} else if (set == 0) {
scripting::hooks::OnMouseReleased->run();
}
}
Script_system.RemHookVar("MouseButton");
}
void mouse_flush()
{
if (!mouse_inited)
return;
mouse_reset_deltas();
Mouse_dx = Mouse_dy = Mouse_dz = 0;
Mouse_wheel_x = Mouse_wheel_y = 0;
SDL_LockMutex( mouse_lock );
mouse_left_pressed = 0;
mouse_right_pressed = 0;
mouse_middle_pressed = 0;
mouse_x1_pressed = 0;
mouse_x2_pressed = 0;
mouse_flags = 0;
SDL_UnlockMutex( mouse_lock );
}
int mouse_down_count(const CC_bind &bind, int reset_count)
{
// Bail if the incoming bind is not the right CID according to mouse-fly mode
auto CID = bind.get_cid();
if (Use_mouse_to_fly) {
// Mouse is Joy0 in this mode
if (CID != CID_JOY0) {
return 0;
}
} else {
// Mouse is Mouse in this mode
if (CID != CID_MOUSE) {
return 0;
}
}
int btn = bind.get_btn();
if (btn > MOUSE_NUM_BUTTONS) {
return 0;
}
btn = 1 << btn;
return mouse_down_count(btn, reset_count);
}
int mouse_down_count(int n, int reset_count) {
int tmp = 0;
if ( !mouse_inited ) return 0;
if ( (n < LOWEST_MOUSE_BUTTON) || (n > HIGHEST_MOUSE_BUTTON)) return 0;
SDL_LockMutex( mouse_lock );
switch (n) {
case MOUSE_LEFT_BUTTON:
tmp = mouse_left_pressed;
if ( reset_count ) {
mouse_left_pressed = 0;
}
break;
case MOUSE_RIGHT_BUTTON:
tmp = mouse_right_pressed;
if ( reset_count ) {
mouse_right_pressed = 0;
}
break;
case MOUSE_MIDDLE_BUTTON:
tmp = mouse_middle_pressed;
if ( reset_count ) {
mouse_middle_pressed = 0;
}
break;
case MOUSE_X1_BUTTON:
tmp = mouse_x1_pressed;
if (reset_count) {
mouse_x1_pressed = 0;
}
break;
case MOUSE_X2_BUTTON:
tmp = mouse_x2_pressed;
if (reset_count) {
mouse_x2_pressed = 0;
}
break;
} // end switch
SDL_UnlockMutex( mouse_lock );
return tmp;
}
// mouse_up_count() returns the number of times button n has gone from down to up
// since the last call
//
// parameters: n - button of mouse (see #define's in mouse.h)
//
int mouse_up_count(const CC_bind &bind)
{
if (bind.get_cid() != CID_MOUSE) {
return 0;
}
int n = 1 << bind.get_btn();
return mouse_up_count(n);
}
int mouse_up_count(int n) {
int tmp = 0;
if ( !mouse_inited ) return 0;
if ( (n < LOWEST_MOUSE_BUTTON) || (n > HIGHEST_MOUSE_BUTTON)) return 0;
SDL_LockMutex( mouse_lock );
switch (n) {
case MOUSE_LEFT_BUTTON:
tmp = mouse_left_up;
mouse_left_up = 0;
break;
case MOUSE_RIGHT_BUTTON:
tmp = mouse_right_up;
mouse_right_up = 0;
break;
case MOUSE_MIDDLE_BUTTON:
tmp = mouse_middle_up;
mouse_middle_up = 0;
break;
case MOUSE_X1_BUTTON:
tmp = mouse_x1_up;
mouse_x1_up = 0;
break;
case MOUSE_X2_BUTTON:
tmp = mouse_x2_up;
mouse_x2_up = 0;
break;
default:
Assert(0); // can't happen
break;
} // end switch
SDL_UnlockMutex( mouse_lock );
return tmp;
}
// returns 1 if mouse button btn is down, 0 otherwise
int mouse_down(const CC_bind &bind)
{
// Bail if the incoming bind is not the right CID according to mouse-fly mode
auto CID = bind.get_cid();
if (Use_mouse_to_fly) {
// Mouse is Joy0 in this mode
if (CID != CID_JOY0) {
return 0;
}
} else {
// Mouse is Mouse in this mode
if (CID != CID_MOUSE) {
return 0;
}
}
int btn = bind.get_btn();
if (btn >= MOUSE_NUM_BUTTONS) {
return 0;
}
btn = 1 << btn;
return mouse_down(btn);
}
int mouse_down(int btn) {
int tmp;
if ( !mouse_inited ) return 0;
// Bail if not a button or wheel direction
if ((btn < LOWEST_MOUSE_BUTTON) || (btn > HIGHEST_MOUSE_WHEEL)) return 0;
SDL_LockMutex( mouse_lock );
if (mouse_flags & btn) {
tmp = 1;
if ((btn >= LOWEST_MOUSE_WHEEL) && (btn <= HIGHEST_MOUSE_WHEEL)) {
mousewheel_decay(btn);
}
} else {
tmp = 0;
}
SDL_UnlockMutex( mouse_lock );
return tmp;
}
void mouse_get_delta(int *dx, int *dy, int *dz)
{
if (dx)
*dx = Mouse_dx;
if (dy)
*dy = Mouse_dy;
if (dz)
*dz = Mouse_dz;
}
// Forces the actual windows cursor to be at (x,y). This may be independent of our tracked (x,y) mouse pos.
void mouse_force_pos(int x, int y)
{
if (os_foreground()) { // only mess with windows's mouse if we are in control of it
SDL_WarpMouseInWindow(os::getSDLMainWindow(), SCALE_MOUSE_TO_WINDOW(x, y, /));
}
}
// Reset deltas so we don't have duplicate mouse deltas
void mouse_reset_deltas()
{
Mouse_dx = Mouse_dy = Mouse_dz = 0;
}
void mouse_event(int x, int y, int dx, int dy)
{
Mouse_x = x;
Mouse_y = y;
// Add up these delta values so we don't overwrite previous events,
// should be reset in gr_flip my mouse_reset_deltas()
Mouse_dx += dx;
Mouse_dy += dy;
if ((Mouse_dx != 0 || Mouse_dy != 0) && scripting::hooks::OnMouseMoved->isActive())
{
scripting::hooks::OnMouseMoved->run();
}
}
int mouse_get_pos(int *xpos, int *ypos)
{
int flags;
if (!Mouse_in_focus)
{
if (xpos)
*xpos = Mouse_x;
if (ypos)
*ypos = Mouse_y;
return 0;
}
if (!mouse_inited) {
*xpos = *ypos = 0;
return 0;
}
flags = mouse_flags;
if (Mouse_x < 0){
Mouse_x = 0;
}
if (Mouse_y < 0){
Mouse_y = 0;
}
if (Mouse_x >= gr_screen.max_w){
Mouse_x = gr_screen.max_w - 1;
}
if (Mouse_y >= gr_screen.max_h){
Mouse_y = gr_screen.max_h - 1;
}
if (xpos){
*xpos = Mouse_x;
}
if (ypos){
*ypos = Mouse_y;
}
return flags;
}
int mouse_get_pos_unscaled( int *xpos, int *ypos )
{
int flags = mouse_get_pos( xpos, ypos );
gr_unsize_screen_pos( (xpos) ? xpos : NULL, (ypos) ? ypos : NULL, NULL, NULL, GR_RESIZE_MENU );
return flags;
}
void mouse_get_real_pos(int *mx, int *my)
{
SDL_GetMouseState(mx, my);
if (Cmdline_window_res) {
if (mx)
*mx *= gr_screen.max_w / Cmdline_window_res->first;
if (my)
*my *= gr_screen.max_h / Cmdline_window_res->second;
}
}
void mouse_set_pos(int xpos, int ypos)
{
mouse_force_pos(xpos, ypos);
}
void mousewheel_motion(int x, int y, bool reversed) {
if (reversed) {
x = -x;
y = -y;
}
Mouse_wheel_x += x;
Mouse_wheel_y += y;
// These nested if's should take care of all edge cases.
// Since x and y's magnitudes can be larger than 1, it is possible to ignore the idle state
if (Mouse_wheel_y > 0) {
// UP
mouse_flags |= MOUSE_WHEEL_UP;
mouse_flags &= ~MOUSE_WHEEL_DOWN;
} else if (Mouse_wheel_y < 0) {
// DOWN
mouse_flags |= MOUSE_WHEEL_DOWN;
mouse_flags &= ~MOUSE_WHEEL_UP;
} else {
mouse_flags &= ~(MOUSE_WHEEL_UP | MOUSE_WHEEL_DOWN);
}
if (Mouse_wheel_x > 0) {
// RIGHT
mouse_flags |= MOUSE_WHEEL_RIGHT;
mouse_flags &= ~MOUSE_WHEEL_LEFT;
} else if (Mouse_wheel_x < 0) {
// LEFT
mouse_flags |= MOUSE_WHEEL_LEFT;
mouse_flags &= ~MOUSE_WHEEL_RIGHT;
} else {
mouse_flags &= ~(MOUSE_WHEEL_RIGHT | MOUSE_WHEEL_LEFT);
}
OnMouseWheelHook->run(scripting::hook_param_list(scripting::hook_param("MouseWheelY", 'i', y), scripting::hook_param("MouseWheelX", 'i', x)));
}
void mousewheel_decay(int btn) {
if (btn & MOUSE_WHEEL_UP) {
Mouse_wheel_y -= 1;
}
if (btn & MOUSE_WHEEL_DOWN) {
Mouse_wheel_y += 1;
}
if (btn & MOUSE_WHEEL_LEFT) {
Mouse_wheel_x -= 1;
}
if (btn & MOUSE_WHEEL_RIGHT) {
Mouse_wheel_x += 1;
}
if (Mouse_wheel_x == 0) {
mouse_flags &= ~(MOUSE_WHEEL_UP | MOUSE_WHEEL_DOWN);
}
if (Mouse_wheel_y == 0) {
mouse_flags &= ~(MOUSE_WHEEL_RIGHT | MOUSE_WHEEL_LEFT);
}
}
short bit_distance(short x) {
short i;
const short max_dist = sizeof(short) * 8;
for (i = 0; i < max_dist; ++i, x >>= 1) {
if (x & 0x01) {
break;
}
}
if (i >= max_dist) {
return -1;
}
return i;
}
|