You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 jaren geleden
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. /*
  2. * CacaSharp .NET bindings for libcaca
  3. * Copyright (c) 2006 Jean-Yves Lamoureux <jylam@lnxscene.org>
  4. * All Rights Reserved
  5. *
  6. * $Id: $
  7. *
  8. * This library is free software; you can redistribute it and/or
  9. * modify it under the terms of the Do What The Fuck You Want To
  10. * Public License, Version 2, as published by Sam Hocevar. See
  11. * http://sam.zoy.org/wtfpl/COPYING for more details.
  12. */
  13. using System;
  14. using System.Runtime.InteropServices;
  15. using System.Security;
  16. using libCucul;
  17. namespace libCaca
  18. {
  19. enum Keys
  20. {
  21. CACA_KEY_UNKNOWN = 0x00, /**< Unknown key. */
  22. /* The following keys have ASCII equivalents */
  23. CACA_KEY_BACKSPACE = 0x08, /**< The backspace key. */
  24. CACA_KEY_TAB = 0x09, /**< The tabulation key. */
  25. CACA_KEY_RETURN = 0x0d, /**< The return key. */
  26. CACA_KEY_PAUSE = 0x13, /**< The pause key. */
  27. CACA_KEY_ESCAPE = 0x1b, /**< The escape key. */
  28. CACA_KEY_DELETE = 0x7f, /**< The delete key. */
  29. /* The following keys do not have ASCII equivalents but have been
  30. * chosen to match the SDL equivalents */
  31. CACA_KEY_UP = 0x111, /**< The up arrow key. */
  32. CACA_KEY_DOWN = 0x112, /**< The down arrow key. */
  33. CACA_KEY_LEFT = 0x113, /**< The left arrow key. */
  34. CACA_KEY_RIGHT = 0x114, /**< The right arrow key. */
  35. CACA_KEY_INSERT = 0x115, /**< The insert key. */
  36. CACA_KEY_HOME = 0x116, /**< The home key. */
  37. CACA_KEY_END = 0x117, /**< The end key. */
  38. CACA_KEY_PAGEUP = 0x118, /**< The page up key. */
  39. CACA_KEY_PAGEDOWN = 0x119, /**< The page down key. */
  40. CACA_KEY_F1 = 0x11a, /**< The F1 key. */
  41. CACA_KEY_F2 = 0x11b, /**< The F2 key. */
  42. CACA_KEY_F3 = 0x11c, /**< The F3 key. */
  43. CACA_KEY_F4 = 0x11d, /**< The F4 key. */
  44. CACA_KEY_F5 = 0x11e, /**< The F5 key. */
  45. CACA_KEY_F6 = 0x11f, /**< The F6 key. */
  46. CACA_KEY_F7 = 0x120, /**< The F7 key. */
  47. CACA_KEY_F8 = 0x121, /**< The F8 key. */
  48. CACA_KEY_F9 = 0x122, /**< The F9 key. */
  49. CACA_KEY_F10 = 0x123, /**< The F10 key. */
  50. CACA_KEY_F11 = 0x124, /**< The F11 key. */
  51. CACA_KEY_F12 = 0x125, /**< The F12 key. */
  52. CACA_KEY_F13 = 0x126, /**< The F13 key. */
  53. CACA_KEY_F14 = 0x127, /**< The F14 key. */
  54. CACA_KEY_F15 = 0x128 /**< The F15 key. */
  55. }
  56. public unsafe class Event
  57. {
  58. public enum type
  59. {
  60. NONE = 0x0000, /**< No event. */
  61. KEY_PRESS = 0x0001, /**< A key was pressed. */
  62. KEY_RELEASE = 0x0002, /**< A key was released. */
  63. MOUSE_PRESS = 0x0004, /**< A mouse button was pressed. */
  64. MOUSE_RELEASE = 0x0008, /**< A mouse button was released. */
  65. MOUSE_MOTION = 0x0010, /**< The mouse was moved. */
  66. RESIZE = 0x0020, /**< The window was resized. */
  67. QUIT = 0x0040, /**< The user requested to quit. */
  68. ANY = 0xffff /**< Bitmask for any event. */
  69. };
  70. }
  71. public unsafe class Caca : IDisposable
  72. {
  73. [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity]
  74. public static extern IntPtr caca_create_display(IntPtr qq);
  75. [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity]
  76. public static extern void caca_free_display(IntPtr kk);
  77. [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity]
  78. public static extern void caca_refresh_display(IntPtr kk);
  79. [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity]
  80. public static extern void caca_set_delay(IntPtr kk, Int32 d);
  81. [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity]
  82. public static extern Int32 caca_get_rendertime(IntPtr kk);
  83. [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity]
  84. public static extern Int32 caca_get_display_width(IntPtr kk);
  85. [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity]
  86. public static extern Int32 caca_get_display_height(IntPtr kk);
  87. [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity]
  88. public static extern Int32 caca_set_display_title(IntPtr kk, string t);
  89. [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity]
  90. public static extern Int32 caca_get_event(IntPtr k, Event.type t, Event e, Int32 timeout);
  91. [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity]
  92. public static extern Int32 caca_get_mouse_x(IntPtr k);
  93. [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity]
  94. public static extern Int32 caca_get_mouse_y(IntPtr k);
  95. [DllImport("libCaca.dll", CallingConvention=CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity]
  96. public static extern void caca_set_mouse(IntPtr k, bool status);
  97. IntPtr qq;
  98. IntPtr kk;
  99. public Caca(Cucul qqt)
  100. {
  101. qq = qqt.get_cucul_t();
  102. kk = caca_create_display(qq);
  103. }
  104. public void Dispose()
  105. {
  106. caca_free_display(kk);
  107. GC.SuppressFinalize(this);
  108. }
  109. public void Refresh()
  110. {
  111. caca_refresh_display(kk);
  112. }
  113. public void setDelay(Int32 d)
  114. {
  115. caca_set_delay(kk, d);
  116. }
  117. public Int32 getRendertime()
  118. {
  119. return caca_get_rendertime(kk);
  120. }
  121. public Int32 getDisplayWidth()
  122. {
  123. return caca_get_display_width(kk);
  124. }
  125. public Int32 getDisplayHeight()
  126. {
  127. return caca_get_display_height(kk);
  128. }
  129. public Int32 setDisplayTitle(string t)
  130. {
  131. return caca_set_display_title(kk, t);
  132. }
  133. public Int32 getEvent(Event.type t, Event e, Int32 timeout)
  134. {
  135. return caca_get_event(kk, t, e, timeout);
  136. }
  137. public Int32 getMouseX()
  138. {
  139. return caca_get_mouse_x(kk);
  140. }
  141. public Int32 getMouseY()
  142. {
  143. return caca_get_mouse_y(kk);
  144. }
  145. public void caca_set_mouse(bool status)
  146. {
  147. caca_set_mouse(kk, status);
  148. }
  149. public IntPtr get_caca_t()
  150. {
  151. return kk;
  152. }
  153. }
  154. }