curses 1.4.6 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (254) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/push_gem.yml +6 -4
  3. data/README.md +8 -1
  4. data/curses.gemspec +2 -2
  5. data/ext/curses/curses.c +188 -12
  6. data/ext/curses/extconf.rb +3 -2
  7. data/lib/curses.rb +7 -0
  8. data/sample/attr_demo.rb +4 -2
  9. data/sample/screen.rb +9 -0
  10. data/vendor/PDCurses/.gitignore +47 -0
  11. data/vendor/PDCurses/.travis.yml +49 -0
  12. data/vendor/PDCurses/CMakeLists.txt +68 -0
  13. data/vendor/PDCurses/HISTORY.md +2036 -0
  14. data/vendor/PDCurses/IMPLEMNT.md +327 -0
  15. data/vendor/PDCurses/Makefile +27 -0
  16. data/vendor/PDCurses/README.md +77 -0
  17. data/vendor/PDCurses/acs_defs.h +265 -0
  18. data/vendor/PDCurses/appveyor.yml +218 -0
  19. data/vendor/PDCurses/cmake/README.md +71 -0
  20. data/vendor/PDCurses/cmake/build_dependencies.cmake +178 -0
  21. data/vendor/PDCurses/cmake/build_options.cmake +25 -0
  22. data/vendor/PDCurses/cmake/dll_version.cmake +26 -0
  23. data/vendor/PDCurses/cmake/gen_config_header.cmake +43 -0
  24. data/vendor/PDCurses/cmake/get_version.cmake +17 -0
  25. data/vendor/PDCurses/cmake/make_uninstall.cmake +19 -0
  26. data/vendor/PDCurses/cmake/project_common.cmake +121 -0
  27. data/vendor/PDCurses/cmake/resource.in.cmake +52 -0
  28. data/vendor/PDCurses/cmake/sdl2_ttf/CMakeLists.txt +83 -0
  29. data/vendor/PDCurses/cmake/target_arch.cmake +36 -0
  30. data/vendor/PDCurses/cmake/version.in.cmake +73 -0
  31. data/vendor/PDCurses/cmake/watcom_open_dos16_toolchain.cmake +96 -0
  32. data/vendor/PDCurses/cmake/watcom_open_dos32_toolchain.cmake +106 -0
  33. data/vendor/PDCurses/cmake/watcom_open_os2v2_toolchain.cmake +105 -0
  34. data/vendor/PDCurses/curses.h +1846 -0
  35. data/vendor/PDCurses/curspriv.h +134 -0
  36. data/vendor/PDCurses/demos/README.md +25 -0
  37. data/vendor/PDCurses/demos/firework.c +144 -0
  38. data/vendor/PDCurses/demos/newtest.c +581 -0
  39. data/vendor/PDCurses/demos/ozdemo.c +447 -0
  40. data/vendor/PDCurses/demos/ptest.c +283 -0
  41. data/vendor/PDCurses/demos/rain.c +157 -0
  42. data/vendor/PDCurses/demos/testcurs.c +1607 -0
  43. data/vendor/PDCurses/demos/tui.c +1048 -0
  44. data/vendor/PDCurses/demos/tui.h +65 -0
  45. data/vendor/PDCurses/demos/tuidemo.c +233 -0
  46. data/vendor/PDCurses/demos/version.c +61 -0
  47. data/vendor/PDCurses/demos/worm.c +432 -0
  48. data/vendor/PDCurses/demos/xmas.c +955 -0
  49. data/vendor/PDCurses/dos/CMakeLists.txt +47 -0
  50. data/vendor/PDCurses/dos/Makefile +105 -0
  51. data/vendor/PDCurses/dos/Makefile.bcc +83 -0
  52. data/vendor/PDCurses/dos/Makefile.dmc +257 -0
  53. data/vendor/PDCurses/dos/Makefile.msc +113 -0
  54. data/vendor/PDCurses/dos/Makefile.wcc +107 -0
  55. data/vendor/PDCurses/dos/README.md +51 -0
  56. data/vendor/PDCurses/dos/bccdos.lrf +9 -0
  57. data/vendor/PDCurses/dos/mscdos.lrf +50 -0
  58. data/vendor/PDCurses/dos/pdcclip.c +132 -0
  59. data/vendor/PDCurses/dos/pdcdisp.c +135 -0
  60. data/vendor/PDCurses/dos/pdcdos.h +194 -0
  61. data/vendor/PDCurses/dos/pdcgetsc.c +98 -0
  62. data/vendor/PDCurses/dos/pdckbd.c +513 -0
  63. data/vendor/PDCurses/dos/pdcscrn.c +785 -0
  64. data/vendor/PDCurses/dos/pdcsetsc.c +101 -0
  65. data/vendor/PDCurses/dos/pdcutil.c +212 -0
  66. data/vendor/PDCurses/libobjs.mif +26 -0
  67. data/vendor/PDCurses/makedist.mif +20 -0
  68. data/vendor/PDCurses/man/Makefile +37 -0
  69. data/vendor/PDCurses/man/README.md +21 -0
  70. data/vendor/PDCurses/man/intro.md +361 -0
  71. data/vendor/PDCurses/man/manext.c +119 -0
  72. data/vendor/PDCurses/man/sdl.md +152 -0
  73. data/vendor/PDCurses/man/sdl2.md +58 -0
  74. data/vendor/PDCurses/man/x11.md +407 -0
  75. data/vendor/PDCurses/ncurses/CMakeLists.txt +66 -0
  76. data/vendor/PDCurses/ncurses/README.md +26 -0
  77. data/vendor/PDCurses/ncurses/makefile +29 -0
  78. data/vendor/PDCurses/os2/CMakeLists.txt +41 -0
  79. data/vendor/PDCurses/os2/Makefile +132 -0
  80. data/vendor/PDCurses/os2/Makefile.bcc +90 -0
  81. data/vendor/PDCurses/os2/Makefile.wcc +43 -0
  82. data/vendor/PDCurses/os2/README.md +43 -0
  83. data/vendor/PDCurses/os2/iccos2.lrf +50 -0
  84. data/vendor/PDCurses/os2/iccos2.mak +256 -0
  85. data/vendor/PDCurses/os2/pdcclip.c +188 -0
  86. data/vendor/PDCurses/os2/pdcdisp.c +93 -0
  87. data/vendor/PDCurses/os2/pdcgetsc.c +89 -0
  88. data/vendor/PDCurses/os2/pdckbd.c +521 -0
  89. data/vendor/PDCurses/os2/pdcos2.h +55 -0
  90. data/vendor/PDCurses/os2/pdcscrn.c +449 -0
  91. data/vendor/PDCurses/os2/pdcsetsc.c +112 -0
  92. data/vendor/PDCurses/os2/pdcutil.c +52 -0
  93. data/vendor/PDCurses/panel.h +56 -0
  94. data/vendor/PDCurses/pdcurses/README.md +25 -0
  95. data/vendor/PDCurses/pdcurses/addch.c +693 -0
  96. data/vendor/PDCurses/pdcurses/addchstr.c +245 -0
  97. data/vendor/PDCurses/pdcurses/addstr.c +240 -0
  98. data/vendor/PDCurses/pdcurses/attr.c +359 -0
  99. data/vendor/PDCurses/pdcurses/beep.c +68 -0
  100. data/vendor/PDCurses/pdcurses/bkgd.c +223 -0
  101. data/vendor/PDCurses/pdcurses/border.c +411 -0
  102. data/vendor/PDCurses/pdcurses/clear.c +159 -0
  103. data/vendor/PDCurses/pdcurses/color.c +298 -0
  104. data/vendor/PDCurses/pdcurses/debug.c +109 -0
  105. data/vendor/PDCurses/pdcurses/delch.c +96 -0
  106. data/vendor/PDCurses/pdcurses/deleteln.c +211 -0
  107. data/vendor/PDCurses/pdcurses/deprec.c +27 -0
  108. data/vendor/PDCurses/pdcurses/getch.c +417 -0
  109. data/vendor/PDCurses/pdcurses/getstr.c +474 -0
  110. data/vendor/PDCurses/pdcurses/getyx.c +139 -0
  111. data/vendor/PDCurses/pdcurses/inch.c +127 -0
  112. data/vendor/PDCurses/pdcurses/inchstr.c +214 -0
  113. data/vendor/PDCurses/pdcurses/initscr.c +367 -0
  114. data/vendor/PDCurses/pdcurses/inopts.c +324 -0
  115. data/vendor/PDCurses/pdcurses/insch.c +271 -0
  116. data/vendor/PDCurses/pdcurses/insstr.c +264 -0
  117. data/vendor/PDCurses/pdcurses/instr.c +246 -0
  118. data/vendor/PDCurses/pdcurses/kernel.c +259 -0
  119. data/vendor/PDCurses/pdcurses/keyname.c +157 -0
  120. data/vendor/PDCurses/pdcurses/mouse.c +438 -0
  121. data/vendor/PDCurses/pdcurses/move.c +57 -0
  122. data/vendor/PDCurses/pdcurses/outopts.c +159 -0
  123. data/vendor/PDCurses/pdcurses/overlay.c +214 -0
  124. data/vendor/PDCurses/pdcurses/pad.c +260 -0
  125. data/vendor/PDCurses/pdcurses/panel.c +633 -0
  126. data/vendor/PDCurses/pdcurses/printw.c +126 -0
  127. data/vendor/PDCurses/pdcurses/refresh.c +279 -0
  128. data/vendor/PDCurses/pdcurses/scanw.c +578 -0
  129. data/vendor/PDCurses/pdcurses/scr_dump.c +213 -0
  130. data/vendor/PDCurses/pdcurses/scroll.c +101 -0
  131. data/vendor/PDCurses/pdcurses/slk.c +591 -0
  132. data/vendor/PDCurses/pdcurses/termattr.c +182 -0
  133. data/vendor/PDCurses/pdcurses/terminfo.c +217 -0
  134. data/vendor/PDCurses/pdcurses/touch.c +163 -0
  135. data/vendor/PDCurses/pdcurses/util.c +312 -0
  136. data/vendor/PDCurses/pdcurses/window.c +569 -0
  137. data/vendor/PDCurses/sdl1/Makefile +129 -0
  138. data/vendor/PDCurses/sdl1/Makefile.mng +110 -0
  139. data/vendor/PDCurses/sdl1/README.md +31 -0
  140. data/vendor/PDCurses/sdl1/deffont.h +385 -0
  141. data/vendor/PDCurses/sdl1/deficon.h +23 -0
  142. data/vendor/PDCurses/sdl1/pdcclip.c +131 -0
  143. data/vendor/PDCurses/sdl1/pdcdisp.c +373 -0
  144. data/vendor/PDCurses/sdl1/pdcgetsc.c +30 -0
  145. data/vendor/PDCurses/sdl1/pdckbd.c +405 -0
  146. data/vendor/PDCurses/sdl1/pdcscrn.c +414 -0
  147. data/vendor/PDCurses/sdl1/pdcsdl.h +31 -0
  148. data/vendor/PDCurses/sdl1/pdcsetsc.c +64 -0
  149. data/vendor/PDCurses/sdl1/pdcutil.c +40 -0
  150. data/vendor/PDCurses/sdl1/sdltest.c +79 -0
  151. data/vendor/PDCurses/sdl2/CMakeLists.txt +76 -0
  152. data/vendor/PDCurses/sdl2/Makefile +135 -0
  153. data/vendor/PDCurses/sdl2/Makefile.vc +164 -0
  154. data/vendor/PDCurses/sdl2/README.md +34 -0
  155. data/vendor/PDCurses/sdl2/deffont.h +385 -0
  156. data/vendor/PDCurses/sdl2/deficon.h +23 -0
  157. data/vendor/PDCurses/sdl2/pdcclip.c +93 -0
  158. data/vendor/PDCurses/sdl2/pdcdisp.c +534 -0
  159. data/vendor/PDCurses/sdl2/pdcgetsc.c +30 -0
  160. data/vendor/PDCurses/sdl2/pdckbd.c +480 -0
  161. data/vendor/PDCurses/sdl2/pdcscrn.c +443 -0
  162. data/vendor/PDCurses/sdl2/pdcsdl.h +33 -0
  163. data/vendor/PDCurses/sdl2/pdcsetsc.c +67 -0
  164. data/vendor/PDCurses/sdl2/pdcutil.c +39 -0
  165. data/vendor/PDCurses/sdl2/sdltest.c +81 -0
  166. data/vendor/PDCurses/term.h +48 -0
  167. data/vendor/PDCurses/version.mif +7 -0
  168. data/vendor/PDCurses/vt/CMakeLists.txt +28 -0
  169. data/vendor/PDCurses/vt/Makefile +135 -0
  170. data/vendor/PDCurses/vt/Makefile.bcc +111 -0
  171. data/vendor/PDCurses/vt/Makefile.dmc +258 -0
  172. data/vendor/PDCurses/vt/Makefile.vc +144 -0
  173. data/vendor/PDCurses/vt/Makefile.wcc +107 -0
  174. data/vendor/PDCurses/vt/README.md +64 -0
  175. data/vendor/PDCurses/vt/pdcclip.c +20 -0
  176. data/vendor/PDCurses/vt/pdcdisp.c +284 -0
  177. data/vendor/PDCurses/vt/pdcgetsc.c +27 -0
  178. data/vendor/PDCurses/vt/pdckbd.c +394 -0
  179. data/vendor/PDCurses/vt/pdcscrn.c +434 -0
  180. data/vendor/PDCurses/vt/pdcsetsc.c +45 -0
  181. data/vendor/PDCurses/vt/pdcutil.c +43 -0
  182. data/vendor/PDCurses/vt/pdcvt.h +16 -0
  183. data/vendor/PDCurses/watcom.mif +68 -0
  184. data/vendor/PDCurses/wincon/CMakeLists.txt +27 -0
  185. data/vendor/PDCurses/wincon/Makefile.bcc +88 -0
  186. data/vendor/PDCurses/wincon/Makefile.dmc +256 -0
  187. data/vendor/PDCurses/wincon/Makefile.lcc +273 -0
  188. data/vendor/PDCurses/wincon/Makefile.mng +176 -0
  189. data/vendor/PDCurses/wincon/Makefile.vc +144 -0
  190. data/vendor/PDCurses/wincon/Makefile.wcc +51 -0
  191. data/vendor/PDCurses/wincon/README.md +85 -0
  192. data/vendor/PDCurses/wincon/pdcclip.c +174 -0
  193. data/vendor/PDCurses/wincon/pdcdisp.c +143 -0
  194. data/vendor/PDCurses/wincon/pdcgetsc.c +55 -0
  195. data/vendor/PDCurses/wincon/pdckbd.c +786 -0
  196. data/vendor/PDCurses/wincon/pdcscrn.c +717 -0
  197. data/vendor/PDCurses/wincon/pdcsetsc.c +91 -0
  198. data/vendor/PDCurses/wincon/pdcurses.ico +0 -0
  199. data/vendor/PDCurses/wincon/pdcurses.rc +28 -0
  200. data/vendor/PDCurses/wincon/pdcutil.c +41 -0
  201. data/vendor/PDCurses/wincon/pdcwin.h +31 -0
  202. data/vendor/PDCurses/wingui/CMakeLists.txt +27 -0
  203. data/vendor/PDCurses/wingui/Makefile.bcc +85 -0
  204. data/vendor/PDCurses/wingui/Makefile.dmc +259 -0
  205. data/vendor/PDCurses/wingui/Makefile.lcc +273 -0
  206. data/vendor/PDCurses/wingui/Makefile.mng +171 -0
  207. data/vendor/PDCurses/wingui/Makefile.vc +144 -0
  208. data/vendor/PDCurses/wingui/Makefile.wcc +51 -0
  209. data/vendor/PDCurses/wingui/README.md +93 -0
  210. data/vendor/PDCurses/wingui/pdcclip.c +174 -0
  211. data/vendor/PDCurses/wingui/pdcdisp.c +718 -0
  212. data/vendor/PDCurses/wingui/pdcgetsc.c +30 -0
  213. data/vendor/PDCurses/wingui/pdckbd.c +143 -0
  214. data/vendor/PDCurses/wingui/pdcscrn.c +2797 -0
  215. data/vendor/PDCurses/wingui/pdcsetsc.c +89 -0
  216. data/vendor/PDCurses/wingui/pdcurses.ico +0 -0
  217. data/vendor/PDCurses/wingui/pdcurses.rc +28 -0
  218. data/vendor/PDCurses/wingui/pdcutil.c +61 -0
  219. data/vendor/PDCurses/wingui/pdcwin.h +122 -0
  220. data/vendor/PDCurses/x11/Makefile.in +754 -0
  221. data/vendor/PDCurses/x11/PDCurses.spec +82 -0
  222. data/vendor/PDCurses/x11/README.md +62 -0
  223. data/vendor/PDCurses/x11/ScrollBox.c +319 -0
  224. data/vendor/PDCurses/x11/ScrollBox.h +51 -0
  225. data/vendor/PDCurses/x11/ScrollBoxP.h +70 -0
  226. data/vendor/PDCurses/x11/aclocal.m4 +994 -0
  227. data/vendor/PDCurses/x11/big_icon.xbm +46 -0
  228. data/vendor/PDCurses/x11/compose.h +201 -0
  229. data/vendor/PDCurses/x11/config.guess +1500 -0
  230. data/vendor/PDCurses/x11/config.h.in +100 -0
  231. data/vendor/PDCurses/x11/config.sub +1616 -0
  232. data/vendor/PDCurses/x11/configure +6700 -0
  233. data/vendor/PDCurses/x11/configure.ac +295 -0
  234. data/vendor/PDCurses/x11/debian/changelog +6 -0
  235. data/vendor/PDCurses/x11/debian/compat +1 -0
  236. data/vendor/PDCurses/x11/debian/control +11 -0
  237. data/vendor/PDCurses/x11/debian/copyright +27 -0
  238. data/vendor/PDCurses/x11/debian/rules +98 -0
  239. data/vendor/PDCurses/x11/install-sh +253 -0
  240. data/vendor/PDCurses/x11/little_icon.xbm +14 -0
  241. data/vendor/PDCurses/x11/ncurses_cfg.h +45 -0
  242. data/vendor/PDCurses/x11/pdcclip.c +173 -0
  243. data/vendor/PDCurses/x11/pdcdisp.c +85 -0
  244. data/vendor/PDCurses/x11/pdcgetsc.c +28 -0
  245. data/vendor/PDCurses/x11/pdckbd.c +104 -0
  246. data/vendor/PDCurses/x11/pdcscrn.c +258 -0
  247. data/vendor/PDCurses/x11/pdcsetsc.c +95 -0
  248. data/vendor/PDCurses/x11/pdcutil.c +52 -0
  249. data/vendor/PDCurses/x11/pdcx11.c +316 -0
  250. data/vendor/PDCurses/x11/pdcx11.h +191 -0
  251. data/vendor/PDCurses/x11/sb.c +155 -0
  252. data/vendor/PDCurses/x11/x11.c +3686 -0
  253. data/vendor/PDCurses/x11/xcurses-config.in +81 -0
  254. metadata +249 -8
@@ -0,0 +1,434 @@
1
+ #include <stdio.h>
2
+ #include <stdlib.h>
3
+ #include <signal.h>
4
+ #include <string.h>
5
+ #if !defined( _WIN32) && !defined( DOS)
6
+ #define USE_TERMIOS
7
+ #include <unistd.h>
8
+ #include <termios.h>
9
+ #include <sys/ioctl.h>
10
+
11
+ static struct termios orig_term;
12
+ #endif
13
+ #include <assert.h>
14
+ #include "curspriv.h"
15
+ #include "pdcvt.h"
16
+
17
+ #ifdef DOS
18
+ bool PDC_is_ansi = TRUE;
19
+ #else
20
+ bool PDC_is_ansi = FALSE;
21
+ #endif
22
+
23
+ #ifdef _WIN32
24
+ #include <windows.h>
25
+
26
+ #ifndef ENABLE_VIRTUAL_TERMINAL_PROCESSING
27
+ #define ENABLE_VIRTUAL_TERMINAL_PROCESSING 0x0004
28
+ #endif
29
+ #ifndef ENABLE_VIRTUAL_TERMINAL_INPUT
30
+ #define ENABLE_VIRTUAL_TERMINAL_INPUT 0x0200
31
+ #endif
32
+ #ifndef DISABLE_NEWLINE_AUTO_RETURN
33
+ #define DISABLE_NEWLINE_AUTO_RETURN 0x0008
34
+ #endif
35
+
36
+ /* In DOS/Windows, we have two possible modes of operation. If we can
37
+ successfully use SetConsoleMode to ENABLE_VIRTUAL_TERMINAL_INPUT,
38
+ we have access to most of what we'd use on xterm. If not, we can only
39
+ use what ANSI.SYS or ANSI.COM (or their NANSI or NNANSI variants) support.
40
+ We'll get sixteen colors, no mouse events, no resizable windows, etc.
41
+
42
+ So we check the return value from SetConsoleMode and set PDC_is_ansi
43
+ accordingly. (In DOS, PDC_is_ansi is always true -- there's no xterm-like
44
+ support there. On non-MS platforms, PDC_is_ansi is always false...
45
+ though that should be revisited for the Linux console, and probably
46
+ elsewhere.) */
47
+
48
+ static int set_win10_for_vt_codes( const bool setting_mode)
49
+ {
50
+ const HANDLE hIn = GetStdHandle( STD_INPUT_HANDLE);
51
+ HANDLE hOut;
52
+ DWORD dwMode = 0;
53
+ static DWORD old_input_mode;
54
+ const DWORD out_mask = ENABLE_VIRTUAL_TERMINAL_PROCESSING
55
+ | DISABLE_NEWLINE_AUTO_RETURN;
56
+
57
+ if( hIn == INVALID_HANDLE_VALUE)
58
+ return GetLastError( );
59
+ PDC_is_ansi = TRUE;
60
+ if( setting_mode)
61
+ {
62
+ GetConsoleMode( hIn, &old_input_mode);
63
+ dwMode = ENABLE_VIRTUAL_TERMINAL_INPUT;
64
+ }
65
+ else /* restoring initial mode */
66
+ dwMode = old_input_mode;
67
+ if( !SetConsoleMode( hIn, dwMode))
68
+ return GetLastError( );
69
+ /* Set output mode to handle virtual terminal sequences */
70
+ hOut = GetStdHandle( STD_OUTPUT_HANDLE);
71
+ if( hOut == INVALID_HANDLE_VALUE)
72
+ return GetLastError( );
73
+
74
+ if( !GetConsoleMode( hOut, &dwMode))
75
+ return GetLastError( );
76
+ if( setting_mode)
77
+ dwMode |= out_mask;
78
+ else /* clearing VT mode, not setting it */
79
+ dwMode &= ~out_mask;
80
+ if( !SetConsoleMode( hOut, dwMode))
81
+ return GetLastError( );
82
+ /* If we've gotten this far, the terminal has been */
83
+ /* set up to process xterm-like sequences : */
84
+ PDC_is_ansi = FALSE;
85
+ return( 0);
86
+ }
87
+ #endif
88
+
89
+ int PDC_rows = -1, PDC_cols = -1;
90
+ bool PDC_resize_occurred = FALSE;
91
+ const int STDIN = 0;
92
+ chtype PDC_capabilities = 0;
93
+
94
+ /* COLOR_PAIR to attribute encoding table. */
95
+
96
+ static short *color_pair_indices = (short *)NULL;
97
+ PACKED_RGB *pdc_rgbs = (PACKED_RGB *)NULL;
98
+
99
+ unsigned long pdc_key_modifiers = 0L;
100
+
101
+ void PDC_reset_prog_mode( void)
102
+ {
103
+ }
104
+
105
+ void PDC_reset_shell_mode( void)
106
+ {
107
+ }
108
+
109
+ static int initial_PDC_rows, initial_PDC_cols;
110
+
111
+ int PDC_resize_screen(int nlines, int ncols)
112
+ {
113
+ if( PDC_rows == -1) /* initscr( ) hasn't been called; we're just */
114
+ { /* setting desired size at startup */
115
+ initial_PDC_rows = nlines;
116
+ initial_PDC_cols = ncols;
117
+ }
118
+ else if( nlines > 1 && ncols > 1 && !PDC_is_ansi)
119
+ {
120
+ printf( "\033[8;%d;%dt", nlines, ncols);
121
+ PDC_rows = nlines;
122
+ PDC_cols = ncols;
123
+ }
124
+ return( 0);
125
+ }
126
+
127
+ void PDC_restore_screen_mode(int i)
128
+ {
129
+ }
130
+
131
+ void PDC_save_screen_mode(int i)
132
+ {
133
+ }
134
+
135
+ void PDC_scr_close( void)
136
+ {
137
+ printf( "\0338"); /* restore cursor & attribs (VT100) */
138
+ printf( "\033[m"); /* set default screen attributes */
139
+ printf( "\033[?47l"); /* restore screen */
140
+ PDC_gotoyx( PDC_cols - 1, 0);
141
+ printf( "\033[?1000l"); /* turn off mouse events */
142
+ #ifdef _WIN32
143
+ set_win10_for_vt_codes( FALSE);
144
+ #else
145
+ #if !defined( DOS)
146
+ tcsetattr( STDIN, TCSANOW, &orig_term);
147
+ #endif
148
+ #endif
149
+ return;
150
+ }
151
+
152
+ void PDC_scr_free( void)
153
+ {
154
+ if (SP)
155
+ free(SP);
156
+ SP = (SCREEN *)NULL;
157
+
158
+ if (color_pair_indices)
159
+ free(color_pair_indices);
160
+ color_pair_indices = (short *)NULL;
161
+
162
+ if (pdc_rgbs)
163
+ free(pdc_rgbs);
164
+ pdc_rgbs = (PACKED_RGB *)NULL;
165
+ }
166
+
167
+ #ifdef USE_TERMIOS
168
+ static void sigwinchHandler( int sig)
169
+ {
170
+ struct winsize ws;
171
+
172
+ if (ioctl(STDIN_FILENO, TIOCGWINSZ, &ws) != -1)
173
+ if( PDC_rows != ws.ws_row || PDC_cols != ws.ws_col)
174
+ {
175
+ PDC_rows = ws.ws_row;
176
+ PDC_cols = ws.ws_col;
177
+ PDC_resize_occurred = TRUE;
178
+ }
179
+ }
180
+ #endif
181
+
182
+ #define MAX_LINES 1000
183
+ #define MAX_COLUMNS 1000
184
+
185
+ int PDC_scr_open(int argc, char **argv)
186
+ {
187
+ int i, r, g, b, n_colors;
188
+ char *capabilities = getenv( "PDC_VT");
189
+ const char *colorterm = getenv( "COLORTERM");
190
+ #ifdef USE_TERMIOS
191
+ struct sigaction sa;
192
+ struct termios term;
193
+ #endif
194
+ #ifdef _WIN32
195
+ set_win10_for_vt_codes( TRUE);
196
+ #endif
197
+
198
+ PDC_LOG(("PDC_scr_open called\n"));
199
+ if( colorterm && !strcmp( colorterm, "truecolor"))
200
+ PDC_capabilities |= A_RGB_COLOR;
201
+ if( capabilities) /* these should really come from terminfo! */
202
+ {
203
+ if( strstr( capabilities, "RGB"))
204
+ PDC_capabilities |= A_RGB_COLOR;
205
+ if( strstr( capabilities, "UND"))
206
+ PDC_capabilities |= A_UNDERLINE;
207
+ if( strstr( capabilities, "BLI"))
208
+ PDC_capabilities |= A_BLINK;
209
+ if( strstr( capabilities, "DIM"))
210
+ PDC_capabilities |= A_DIM;
211
+ if( strstr( capabilities, "STA"))
212
+ PDC_capabilities |= A_STANDOUT;
213
+ }
214
+ SP = calloc(1, sizeof(SCREEN));
215
+ color_pair_indices = (short *)calloc( PDC_COLOR_PAIRS * 2, sizeof( short));
216
+ n_colors = (PDC_is_ansi ? 16 : 256);
217
+ pdc_rgbs = (PACKED_RGB *)calloc( n_colors, sizeof( PACKED_RGB));
218
+ assert( SP && color_pair_indices && pdc_rgbs);
219
+ if (!SP || !color_pair_indices || !pdc_rgbs)
220
+ return ERR;
221
+
222
+ COLORS = n_colors; /* should give this a try and see if it works! */
223
+ for( i = 0; i < 16 && i < n_colors; i++)
224
+ {
225
+ const int intensity = ((i & 8) ? 0xff : 0xc0);
226
+
227
+ pdc_rgbs[i] = PACK_RGB( ((i & COLOR_RED) ? intensity : 0),
228
+ ((i & COLOR_GREEN) ? intensity : 0),
229
+ ((i & COLOR_BLUE) ? intensity : 0));
230
+ }
231
+ /* 256-color xterm extended palette: 216 colors in a
232
+ 6x6x6 color cube, plus 24 (not 50) shades of gray */
233
+ for( r = 0; r < 6; r++)
234
+ for( g = 0; g < 6; g++)
235
+ for( b = 0; b < 6; b++)
236
+ if( i < n_colors)
237
+ pdc_rgbs[i++] = PACK_RGB( r ? r * 40 + 55 : 0,
238
+ g ? g * 40 + 55 : 0,
239
+ b ? b * 40 + 55 : 0);
240
+ for( i = 0; i < 24; i++)
241
+ if( i + 232 < n_colors)
242
+ pdc_rgbs[i + 232] = PACK_RGB( i * 10 + 8, i * 10 + 8, i * 10 + 8);
243
+ setbuf( stdin, NULL);
244
+ setbuf( stdout, NULL);
245
+ #ifdef USE_TERMIOS
246
+ sigemptyset(&sa.sa_mask);
247
+ sa.sa_flags = 0;
248
+ sa.sa_handler = sigwinchHandler;
249
+ if (sigaction(SIGWINCH, &sa, NULL) == -1)
250
+ {
251
+ fprintf( stderr, "Sigaction failed\n");
252
+ return( -1);
253
+ }
254
+ sigwinchHandler( 0);
255
+ #else
256
+ {
257
+ const char *env = getenv("PDC_LINES");
258
+
259
+ PDC_rows = (env ? atoi( env) : 25);
260
+ env = getenv( "PDC_COLS");
261
+ PDC_cols = (env ? atoi( env) : 80);
262
+ }
263
+ #endif
264
+ SP->mouse_wait = PDC_CLICK_PERIOD;
265
+ SP->visibility = 0; /* no cursor, by default */
266
+ SP->curscol = SP->cursrow = 0;
267
+ SP->audible = TRUE;
268
+ SP->mono = FALSE;
269
+
270
+ while( PDC_get_rows( ) < 1 && PDC_get_columns( ) < 1)
271
+ ; /* wait for screen to be drawn and size determined */
272
+ if( initial_PDC_rows > 1 && initial_PDC_cols > 1)
273
+ {
274
+ PDC_resize_screen( initial_PDC_rows, initial_PDC_cols);
275
+ while( PDC_get_rows( ) != initial_PDC_rows
276
+ && PDC_get_columns( ) != initial_PDC_rows)
277
+ ;
278
+ }
279
+
280
+ SP->lines = PDC_get_rows();
281
+ SP->cols = PDC_get_columns();
282
+
283
+ if (SP->lines < 2 || SP->lines > MAX_LINES
284
+ || SP->cols < 2 || SP->cols > MAX_COLUMNS)
285
+ {
286
+ fprintf(stderr, "LINES value must be >= 2 and <= %d: got %d\n",
287
+ MAX_LINES, SP->lines);
288
+ fprintf(stderr, "COLS value must be >= 2 and <= %d: got %d\n",
289
+ MAX_COLUMNS, SP->cols);
290
+
291
+ return ERR;
292
+ }
293
+
294
+ #ifdef USE_TERMIOS
295
+ tcgetattr( STDIN, &orig_term);
296
+ memcpy( &term, &orig_term, sizeof( term));
297
+ term.c_lflag &= ~(ICANON | ECHO);
298
+ tcsetattr( STDIN, TCSANOW, &term);
299
+ #endif
300
+ printf( "\033[?47h"); /* Save screen */
301
+ if( !PDC_is_ansi)
302
+ printf( "\033[?1000h"); /* enable mouse events, at least on xterm */
303
+ /* NOTE: could send 1003h to get mouse motion events as well */
304
+ printf( "\0337"); /* save cursor & attribs (VT100) */
305
+ PDC_resize_occurred = FALSE;
306
+ PDC_LOG(("PDC_scr_open exit\n"));
307
+ /* PDC_reset_prog_mode(); doesn't do anything anyway */
308
+ return( 0);
309
+ }
310
+
311
+ int PDC_set_function_key( const unsigned function, const int new_key)
312
+ {
313
+ return( 0);
314
+ }
315
+
316
+ void PDC_set_resize_limits( const int new_min_lines,
317
+ const int new_max_lines,
318
+ const int new_min_cols,
319
+ const int new_max_cols)
320
+ {
321
+ return;
322
+ }
323
+
324
+ /* PDC_init_color(), PDC_init_pair(), and PDC_set_blink() all share a common
325
+ issue : after adjusting the display characteristic in question, all relevant
326
+ text should be redrawn. Call PDC_init_pair( 3, ...), and all text using
327
+ color pair 3 should be redrawn; call PDC_init_color( 5, ...) and all text
328
+ using color index 5 for either foreground or background should be redrawn;
329
+ turn "real blinking" on/off, and all blinking text should be redrawn.
330
+ (On platforms where blinking text is controlled by a timer and redrawn every
331
+ half second or so, such as X11, SDLx, and Win32a, this function can be
332
+ used for that purpose as well.)
333
+
334
+ PDC_show_changes( ) will look for relevant chains of text and redraw them.
335
+ For speed/simplicity, the code looks for the first and last character in
336
+ each line that would be affected, then draws those in between. Often --
337
+ perhaps usually -- this will be zero characters, i.e., no text on that
338
+ particular line happens to have an attribute requiring redrawing. */
339
+
340
+ static short get_pair( const chtype ch)
341
+
342
+ {
343
+ return( (short)( (ch & A_COLOR) >> PDC_COLOR_SHIFT) & (COLOR_PAIRS - 1));
344
+ }
345
+
346
+ static int color_used_for_this_char( const chtype c, const int idx)
347
+ {
348
+ const int color = get_pair( c);
349
+ const int rval = (color_pair_indices[color] == idx ||
350
+ color_pair_indices[color + PDC_COLOR_PAIRS] == idx);
351
+
352
+ return( rval);
353
+ }
354
+
355
+ void PDC_show_changes( const short pair, const short idx, const chtype attr)
356
+ {
357
+ if( curscr && curscr->_y)
358
+ {
359
+ int i;
360
+
361
+ for( i = 0; i < SP->lines - 1; i++)
362
+ if( curscr->_y[i])
363
+ {
364
+ int j = 0, n_chars;
365
+ chtype *line = curscr->_y[i];
366
+
367
+ /* skip over starting text that isn't changed : */
368
+ while( j < SP->cols && get_pair( *line) != pair
369
+ && !color_used_for_this_char( *line, idx)
370
+ && !(attr & *line))
371
+ {
372
+ j++;
373
+ line++;
374
+ }
375
+ n_chars = SP->cols - j;
376
+ /* then skip over text at the end that's not the right color: */
377
+ while( n_chars && get_pair( line[n_chars - 1]) != pair
378
+ && !color_used_for_this_char( line[n_chars - 1], idx)
379
+ && !(attr & line[n_chars - 1]))
380
+ n_chars--;
381
+ assert( n_chars >= 0);
382
+ if( n_chars)
383
+ PDC_transform_line( i, j, n_chars, line);
384
+ }
385
+ }
386
+ }
387
+
388
+ void PDC_init_pair( short pair, short fg, short bg)
389
+ {
390
+ if( color_pair_indices[pair] != fg ||
391
+ color_pair_indices[pair + PDC_COLOR_PAIRS] != bg)
392
+ {
393
+ color_pair_indices[pair] = fg;
394
+ color_pair_indices[pair + PDC_COLOR_PAIRS] = bg;
395
+ PDC_show_changes( pair, -1, 0);
396
+ }
397
+ }
398
+
399
+ int PDC_pair_content( short pair, short *fg, short *bg)
400
+ {
401
+ *fg = color_pair_indices[pair];
402
+ *bg = color_pair_indices[pair + PDC_COLOR_PAIRS];
403
+ return OK;
404
+ }
405
+
406
+ bool PDC_can_change_color(void)
407
+ {
408
+ return TRUE;
409
+ }
410
+
411
+ int PDC_color_content( short color, short *red, short *green, short *blue)
412
+ {
413
+ PACKED_RGB col = pdc_rgbs[color];
414
+
415
+ *red = DIVROUND( Get_RValue(col) * 1000, 255);
416
+ *green = DIVROUND( Get_GValue(col) * 1000, 255);
417
+ *blue = DIVROUND( Get_BValue(col) * 1000, 255);
418
+
419
+ return OK;
420
+ }
421
+
422
+ int PDC_init_color( short color, short red, short green, short blue)
423
+ {
424
+ const PACKED_RGB new_rgb = PACK_RGB(DIVROUND(red * 255, 1000),
425
+ DIVROUND(green * 255, 1000),
426
+ DIVROUND(blue * 255, 1000));
427
+
428
+ if( pdc_rgbs[color] != new_rgb)
429
+ {
430
+ pdc_rgbs[color] = new_rgb;
431
+ PDC_show_changes( -1, color, 0);
432
+ }
433
+ return OK;
434
+ }
@@ -0,0 +1,45 @@
1
+ #include <stdio.h>
2
+ #include <curspriv.h>
3
+ #include "pdcvt.h"
4
+
5
+ #define CURSOR_ON "\033[?25h"
6
+ #define CURSOR_OFF "\033[?25l"
7
+
8
+ int PDC_curs_set( int visibility)
9
+ {
10
+ int ret_vis;
11
+
12
+ PDC_LOG(("PDC_curs_set() - called: visibility=%d\n", visibility));
13
+
14
+ ret_vis = SP->visibility;
15
+
16
+ SP->visibility = visibility;
17
+
18
+ printf( visibility ? CURSOR_ON : CURSOR_OFF);
19
+
20
+ return ret_vis;
21
+ }
22
+
23
+ int PDC_really_blinking = FALSE;
24
+
25
+ void PDC_show_changes( const short pair, const short idx, const chtype attr);
26
+
27
+ int PDC_set_blink(bool blinkon)
28
+ {
29
+ if( PDC_really_blinking != blinkon)
30
+ {
31
+ PDC_really_blinking = blinkon;
32
+ PDC_show_changes( -1, -1, A_BLINK);
33
+ }
34
+ return OK;
35
+ }
36
+
37
+ void PDC_set_title( const char *title)
38
+ {
39
+ PDC_LOG(("PDC_set_title() - called:<%s>\n", title));
40
+
41
+ #ifndef DOS
42
+ if( !PDC_is_ansi)
43
+ printf( "\033]2;%s\a", title);
44
+ #endif
45
+ }
@@ -0,0 +1,43 @@
1
+ #ifdef _WIN32
2
+ #include <windows.h>
3
+ #undef MOUSE_MOVED
4
+ #else
5
+ #include <unistd.h>
6
+ #endif
7
+ #include "curses.h"
8
+
9
+ void PDC_beep(void)
10
+ {
11
+ }
12
+
13
+ void PDC_napms(int ms)
14
+ {
15
+ #ifdef _WIN32
16
+ Sleep(ms);
17
+ #else
18
+ #ifndef DOS
19
+ usleep(1000 * ms);
20
+ #endif
21
+ #endif
22
+ }
23
+
24
+
25
+ const char *PDC_sysname(void)
26
+ {
27
+ return( "VTx00");
28
+ }
29
+
30
+ PDC_version_info PDC_version = { PDC_PORT_VT,
31
+ PDC_VER_MAJOR, PDC_VER_MINOR, PDC_VER_CHANGE,
32
+ sizeof( chtype),
33
+ #ifdef PDC_WIDE
34
+ TRUE,
35
+ #else
36
+ FALSE,
37
+ #endif
38
+ #ifdef PDC_FORCE_UTF8
39
+ TRUE,
40
+ #else
41
+ FALSE,
42
+ #endif
43
+ };
@@ -0,0 +1,16 @@
1
+ #define PACKED_RGB uint32_t
2
+ #ifndef DIVROUND
3
+ #define DIVROUND( A, B) ((A + B / 2) / B)
4
+ #endif
5
+ #define PACK_RGB( R, G, B) (((uint32_t)(R) << 16) | ((uint32_t)(G) << 8) \
6
+ | (uint32_t)(B))
7
+
8
+ #define Get_RValue( rgb) ((int)( (rgb) >> 16))
9
+ #define Get_GValue( rgb) ((int)( (rgb) >> 8) & 0xff)
10
+ #define Get_BValue( rgb) ((int)((rgb) & 0xff))
11
+
12
+ int PDC_pair_content( short pair, short *fg, short *bg);
13
+
14
+ /* If the following is TRUE, only a limited subset of control
15
+ codes will actually work. Happens in older Windows and DOS. */
16
+ extern bool PDC_is_ansi;
@@ -0,0 +1,68 @@
1
+ # Common elements for the Watcom makefiles
2
+
3
+ !ifeq CROSS Y
4
+ DEL = rm -f
5
+ COPY = cp
6
+ !else
7
+ DEL = del
8
+ COPY = copy
9
+ !endif
10
+
11
+ srcdir = $(PDCURSES_SRCDIR)/pdcurses
12
+ demodir = $(PDCURSES_SRCDIR)/demos
13
+
14
+ LIBOBJS = addch.obj addchstr.obj addstr.obj attr.obj beep.obj bkgd.obj &
15
+ border.obj clear.obj color.obj delch.obj deleteln.obj deprec.obj &
16
+ getch.obj getstr.obj getyx.obj inch.obj inchstr.obj initscr.obj inopts.obj &
17
+ insch.obj insstr.obj instr.obj kernel.obj keyname.obj mouse.obj move.obj &
18
+ outopts.obj overlay.obj pad.obj panel.obj printw.obj refresh.obj &
19
+ scanw.obj scr_dump.obj scroll.obj slk.obj termattr.obj terminfo.obj &
20
+ touch.obj util.obj window.obj debug.obj
21
+
22
+ PDCOBJS = pdcclip.obj pdcdisp.obj pdcgetsc.obj pdckbd.obj pdcscrn.obj &
23
+ pdcsetsc.obj pdcutil.obj
24
+
25
+ DEMOS = testcurs.exe ozdemo.exe xmas.exe tuidemo.exe firework.exe &
26
+ newtest.exe ptest.exe rain.exe worm.exe
27
+
28
+ LIBCURSES = pdcurses.lib
29
+
30
+ LINK = wlink
31
+
32
+ !ifdef __LOADDLL__
33
+ ! loaddll wcc wccd
34
+ ! loaddll wcc386 wccd386
35
+ ! loaddll wlink wlinkd
36
+ ! loaddll wlib wlibd
37
+ !endif
38
+
39
+ all: $(LIBCURSES) $(DEMOS)
40
+
41
+ clean
42
+ -$(DEL) *.obj
43
+ -$(DEL) *.lib
44
+ -$(DEL) *.exe
45
+ -$(DEL) *.err
46
+
47
+ demos: $(DEMOS)
48
+
49
+ .c: $(srcdir);$(osdir);$(demodir)
50
+ .c.obj: .autodepend
51
+ $(CC) $(CFLAGS) -fo=$@ $<
52
+
53
+ .obj.exe:
54
+ $(LINK) $(LDFLAGS) n $@ f $*.obj l $(LIBCURSES)
55
+
56
+ testcurs.exe: testcurs.obj $(LIBCURSES)
57
+ ozdemo.exe: ozdemo.obj $(LIBCURSES)
58
+ newtest.exe: newtest.obj $(LIBCURSES)
59
+ xmas.exe: xmas.obj $(LIBCURSES)
60
+ firework.exe: firework.obj $(LIBCURSES)
61
+ rain.exe: rain.obj $(LIBCURSES)
62
+ worm.exe: worm.obj $(LIBCURSES)
63
+ ptest.exe: ptest.obj $(LIBCURSES)
64
+
65
+ tuidemo.exe: tuidemo.obj tui.obj $(LIBCURSES)
66
+ $(LINK) $(LDFLAGS) n $@ f tuidemo.obj f tui.obj l $(LIBCURSES)
67
+
68
+ dist: .symbolic
@@ -0,0 +1,27 @@
1
+ cmake_minimum_required(VERSION 3.11)
2
+
3
+ if(NOT CMAKE_BUILD_TYPE)
4
+ set(CMAKE_BUILD_TYPE "MinSizeRel" CACHE STRING "Choose the type of build, options are: Debug, Release, or MinSizeRel." FORCE)
5
+ message(STATUS "No build type specified, defaulting to MinSizeRel.")
6
+ endif()
7
+
8
+ PROJECT(wincon VERSION "${PROJECT_VERSION}" LANGUAGES C)
9
+
10
+ INCLUDE(project_common)
11
+
12
+ demo_app(../demos version)
13
+ demo_app(../demos firework)
14
+ demo_app(../demos ozdemo)
15
+ demo_app(../demos newtest)
16
+ demo_app(../demos ptest)
17
+ demo_app(../demos rain)
18
+ demo_app(../demos testcurs)
19
+ demo_app(../demos tuidemo)
20
+ demo_app(../demos worm)
21
+ demo_app(../demos xmas)
22
+
23
+ IF(WIN32)
24
+ SET_TARGET_PROPERTIES(${PROJECT_NAME}_newtest PROPERTIES LINK_FLAGS "/SUBSYSTEM:WINDOWS")
25
+ ENDIF(WIN32)
26
+
27
+ SET(CPACK_COMPONENTS_ALL applications)