/src/test/java/com/heavylead/views/concrete/gbui/GbuiTestCase.java

http://heavylead.googlecode.com/ · Java · 101 lines · 51 code · 20 blank · 30 comment · 0 complexity · 26bed6920874fa9c43d70a733db4d41e MD5 · raw file

  1. package com.heavylead.views.concrete.gbui;
  2. import junit.framework.TestCase;
  3. import com.google.inject.Guice;
  4. import com.google.inject.Injector;
  5. import com.heavylead.injection.HeavyLeadTestModule;
  6. import com.heavylead.wrappers.concrete.DisplaySystem;
  7. import com.heavylead.wrappers.interfaces.IDisplaySystem;
  8. import com.jme.input.InputHandler;
  9. import com.jme.util.Timer;
  10. import com.jmex.bui.BButton;
  11. import com.jmex.bui.BuiSystem;
  12. import com.jmex.bui.PolledRootNode;
  13. import com.jmex.bui.event.MouseEvent;
  14. import com.jmex.game.state.GameStateManager;
  15. /**
  16. * The Class GbuiTestCase.
  17. */
  18. public abstract class GbuiTestCase extends TestCase {
  19. /** The Constant TINY_TICK. */
  20. public static final float TINY_TICK = 0.1f;
  21. private static final int TEST_FREQUENCY = 60;
  22. private static final int TEST_DEPTH = 16;
  23. private static final int TEST_WIDTH = 10;
  24. private static final int TEST_HEIGHT = 10;
  25. private Injector _injector;
  26. /** The _input handler. */
  27. private InputHandler _inputHandler;
  28. /** The _display. */
  29. private IDisplaySystem _displaySystem;
  30. /**
  31. * Sets the up gbui.
  32. */
  33. protected final void setUpGbui() {
  34. _injector = Guice.createInjector(new HeavyLeadTestModule());
  35. _displaySystem = new DisplaySystem("LWJGL");
  36. _displaySystem.createWindow(TEST_WIDTH, TEST_HEIGHT, TEST_DEPTH, TEST_FREQUENCY, false);
  37. _inputHandler = new InputHandler();
  38. final PolledRootNode polledRootNode = new PolledRootNode(Timer.getTimer(),
  39. _inputHandler);
  40. BuiSystem.init(polledRootNode, "/data/gbui/heavylead.bss");
  41. GameStateManager.create();
  42. }
  43. /**
  44. * Tear down gbui.
  45. */
  46. protected final void tearDownGbui() {
  47. _displaySystem.close();
  48. }
  49. /**
  50. * Gets the injector.
  51. *
  52. * @return the injector
  53. */
  54. protected final Injector getInjector() {
  55. return _injector;
  56. }
  57. /**
  58. * Gets the input handler.
  59. *
  60. * @return the input handler
  61. */
  62. protected final InputHandler getInputHandler() {
  63. return _inputHandler;
  64. }
  65. /**
  66. * Perform click.
  67. *
  68. * @param button
  69. * the button
  70. */
  71. protected final void performClick(final BButton button) {
  72. // In order to trigger a click event, we need to first fire
  73. // a Mouse Pressed and then Mouse Released
  74. final MouseEvent mousePressedEvent = new MouseEvent(this, 1, 0,
  75. MouseEvent.BUTTON1, MouseEvent.MOUSE_PRESSED, 5, 5);
  76. button.dispatchEvent(mousePressedEvent);
  77. final MouseEvent mouseReleasedEvent = new MouseEvent(this, 2, 0,
  78. MouseEvent.MOUSE_RELEASED, 5, 5);
  79. button.dispatchEvent(mouseReleasedEvent);
  80. }
  81. }