/MyNes/Nes Input Mode/JoyButton.cs

http://mynes.codeplex.com · C# · 110 lines · 83 code · 7 blank · 20 comment · 34 complexity · 0659f83edaafeaa99d1223621925ebf7 MD5 · raw file

  1. /*********************************************************************\
  2. *This file is part of My Nes *
  3. *A Nintendo Entertainment System Emulator. *
  4. * *
  5. *Copyright (C) 2009 - 2010 Ala Hadid *
  6. *E-mail: mailto:ahdsoftwares@hotmail.com *
  7. * *
  8. *My Nes is free software: you can redistribute it and/or modify *
  9. *it under the terms of the GNU General Public License as published by *
  10. *the Free Software Foundation, either version 3 of the License, or *
  11. *(at your option) any later version. *
  12. * *
  13. *My Nes is distributed in the hope that it will be useful, *
  14. *but WITHOUT ANY WARRANTY; without even the implied warranty of *
  15. *MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
  16. *GNU General Public License for more details. *
  17. * *
  18. *You should have received a copy of the GNU General Public License *
  19. *along with this program. If not, see <http://www.gnu.org/licenses/>.*
  20. \*********************************************************************/
  21. using System;
  22. using System.Collections.Generic;
  23. using System.Linq;
  24. using System.Text;
  25. using SlimDX;
  26. using SlimDX.DirectInput;
  27. using MyNes.Nes.Input;
  28. namespace MyNes
  29. {
  30. public class JoyButton
  31. {
  32. private InputManager _manager;
  33. private int _device;
  34. private int _code;
  35. private string _input;
  36. public string Input
  37. {
  38. get
  39. {
  40. return _input;
  41. }
  42. set
  43. {
  44. _input = value;
  45. if (_input.StartsWith("Keyboard"))
  46. {
  47. string keyName = _input.Substring(9, _input.Length - 9);
  48. _device = 0;
  49. _code = (int)Enum.Parse(typeof(Key), keyName);
  50. }
  51. else if (_input.StartsWith("Joystick"))
  52. {
  53. string buttonNumber = _input.Substring(10, _input.Length - 10);
  54. _device = Convert.ToInt32(_input.Substring(8, 1));
  55. if (buttonNumber == "X+")
  56. _code = -1;
  57. else if (buttonNumber == "X-")
  58. _code = -2;
  59. else if (buttonNumber == "Y+")
  60. _code = -3;
  61. else if (buttonNumber == "Y-")
  62. _code = -4;
  63. else
  64. _code = Convert.ToInt32(buttonNumber);
  65. }
  66. }
  67. }
  68. public JoyButton(InputManager manager)
  69. {
  70. _manager = manager;
  71. }
  72. public bool IsPressed()
  73. {
  74. if (_device >= _manager.Devices.Count)
  75. { return false; }
  76. InputDevice device = _manager.Devices[_device];
  77. if (device.Type == DeviceType.Keyboard)
  78. {
  79. if (device.KeyboardState != null)
  80. return device.KeyboardState.IsPressed((Key)_code);
  81. }
  82. else if (device.Type == DeviceType.Joystick)
  83. {
  84. if (_code < 0)
  85. {
  86. if (_code == -1)
  87. return device.JoystickState.X > 0xC000;
  88. else if (_code == -2)
  89. return device.JoystickState.X < 0x4000;
  90. else if (_code == -3)
  91. return device.JoystickState.Y > 0xC000;
  92. else if (_code == -4)
  93. return device.JoystickState.Y < 0x4000;
  94. }
  95. else
  96. {
  97. return device.JoystickState.IsPressed(_code);
  98. }
  99. }
  100. return false;
  101. }
  102. }
  103. }