about summary refs log blame commit diff stats
path: root/cpp/070display
blob: a64aa55084a739910df0822560100f9164febe94 (plain) (generated by cgit-pink 1.4.1-2-gfad0 (git 2.36.2.497.gbbea4dcf42) at 2024-12-20 01:19:53 +0000
pan> ^
ec961781 ^
54d48b25 ^
ec961781 ^
54d48b25 ^
ec961781 ^
54d48b25 ^




12d73ee8 ^





























































f08a13e1 ^
54d48b25 ^
f08a13e1 ^
54d48b25 ^
f08a13e1 ^
54d48b25 ^


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
                                                                              



                                                                        



                        

                       
                                             
                  
                                        
                                                       
                                                
                         




                                             
                  
                                        
                                                       
                                                
                         




                                             





























































                                                                         
                           
                                        
                                                                         
                                                
                                  


          
//: Text-mode cursor primitives. Currently thin wrappers around ncurses calls.
//: Mu starts out at the 'console' where lines wrap and scrolling is
//: automatic, where keys aren't read until pressing <enter>.
//: This file provides mechanisms for opening a 'display' and taking raw
//: charge of the cursor and keyboard.

:(before "End Includes")
#include<ncurses.h>

//:: Display management

:(before "End Primitive Recipe Declarations")
SWITCH_TO_DISPLAY,
:(before "End Primitive Recipe Numbers")
Recipe_number["switch-to-display"] = SWITCH_TO_DISPLAY;
:(before "End Primitive Recipe Implementations")
case SWITCH_TO_DISPLAY: {
  initscr();
  break;
}

:(before "End Primitive Recipe Declarations")
RETURN_TO_CONSOLE,
:(before "End Primitive Recipe Numbers")
Recipe_number["return-to-console"] = RETURN_TO_CONSOLE;
:(before "End Primitive Recipe Implementations")
case RETURN_TO_CONSOLE: {
  endwin();
  break;
}

:(before "End Primitive Recipe Declarations")
CLEAR_DISPLAY,
:(before "End Primitive Recipe Numbers")
Recipe_number["clear-display"] = CLEAR_DISPLAY;
:(before "End Primitive Recipe Implementations")
case CLEAR_DISPLAY: {
  clear();
  break;
}

:(before "End Primitive Recipe Declarations")
CLEAR_LINE_ON_DISPLAY,
:(before "End Primitive Recipe Numbers")
Recipe_number["clear-line-on-display"] = CLEAR_LINE_ON_DISPLAY;
:(before "End Primitive Recipe Implementations")
case CLEAR_LINE_ON_DISPLAY: {
  clrtoeol();
  break;
}

:(before "End Primitive Recipe Declarations")
PRINT_CHARACTER_TO_DISPLAY,
:(before "End Primitive Recipe Numbers")
Recipe_number["print-character-to-display"] = PRINT_CHARACTER_TO_DISPLAY;
:(before "End Primitive Recipe Implementations")
case PRINT_CHARACTER_TO_DISPLAY: {
  vector<int> arg = read_memory(instructions[pc].ingredients[0]);
  addch(arg[0]);
  break;
}

:(before "End Primitive Recipe Declarations")
CURSOR_POSITION_ON_DISPLAY,
:(before "End Primitive Recipe Numbers")
Recipe_number["cursor-position-on-display"] = CURSOR_POSITION_ON_DISPLAY;
:(before "End Primitive Recipe Implementations")
case CURSOR_POSITION_ON_DISPLAY: {
  size_t cursor_row = 0, cursor_column = 0;
  getyx(stdscr, cursor_row, cursor_column);
  vector<int> row;
  row.push_back(cursor_row);
  write_memory(instructions[pc].products[0], row);
  vector<int> column;
  column.push_back(cursor_column);
  write_memory(instructions[pc].products[1], column);
  break;
}

:(before "End Primitive Recipe Declarations")
MOVE_CURSOR_ON_DISPLAY,
:(before "End Primitive Recipe Numbers")
Recipe_number["move-cursor-on-display"] = MOVE_CURSOR_ON_DISPLAY;
:(before "End Primitive Recipe Implementations")
case MOVE_CURSOR_ON_DISPLAY: {
  vector<int> row = read_memory(instructions[pc].ingredients[0]);
  vector<int> column = read_memory(instructions[pc].ingredients[1]);
  move(row[0], column[0]);
  break;
}

//:: Keyboard management

:(before "End Primitive Recipe Declarations")
WAIT_FOR_KEY_FROM_KEYBOARD,
:(before "End Primitive Recipe Numbers")
Recipe_number["wait-for-key-from-keyboard"] = WAIT_FOR_KEY_FROM_KEYBOARD;
:(before "End Primitive Recipe Implementations")
case WAIT_FOR_KEY_FROM_KEYBOARD: {
  getch();
  break;
}