door.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  1. /*
  2. Package door: a go implementation of a BBS door for linux and Windows
  3. that uses door32.sys, understand CP437 and unicode (if available),
  4. detects screen size, and supports TheDraw Fonts.
  5. import (
  6. "door"
  7. )
  8. int main() {
  9. d = door.Door{}
  10. d.Init() // Process commandline switches, initialize door, detect screen size.
  11. d.Write("Welcome to my awesome door, written in "+door.ColorText("BLINK BOLD WHITE")+"go"+door.Reset+"."+door.CRNL)
  12. d.Write("Press a key...")
  13. d.Key()
  14. d.Write(door.CRNL)
  15. }
  16. */
  17. package door
  18. import (
  19. "bytes"
  20. "flag"
  21. "fmt"
  22. "log"
  23. "os"
  24. "path/filepath"
  25. "runtime/debug"
  26. "sync"
  27. "time"
  28. "golang.org/x/term"
  29. )
  30. // debugging output - enable here
  31. const DEBUG_DOOR bool = false
  32. // For debugging input reader routines.
  33. const DEBUG_INPUT bool = false
  34. const DEBUG_OUTPUT bool = false
  35. // See door_test.go for DEBUG test const
  36. // Right now these are strings. Should they be []byte ?
  37. const SavePos = "\x1b[s" // Save Cursor Position
  38. const RestorePos = "\x1b[u" // Restore Cursor Position
  39. // const CRNL = "\r\n" // BBS Line Ending
  40. const CRNL = "\n"
  41. const Clrscr = "\x1b[0m\x1b[2J\x1b[H" // Clear screen, home cursor
  42. const HideCursor = "\x1b[?25l" // Hide Cursor
  43. const ShowCursor = "\x1b[?25h" // Show Cursor
  44. const Reset string = "\x1b[0m" // ANSI Color Reset
  45. const CURSOR_POS = "\x1b[6n"
  46. const SAVE_POS = "\x1b[s"
  47. const RESTORE_POS = "\x1b[u"
  48. // Move these into the door structure, instead of having globals.
  49. var Unicode bool // Unicode support detected
  50. var CP437 bool // CP437 support detected
  51. var Full_CP437 bool // Full CP437 support detected (handles control codes properly)
  52. var Height int // Screen height detected
  53. var Width int // Screen width detected
  54. var Inactivity time.Duration = time.Duration(120) * time.Second // Inactivity timeout
  55. type ColorRender func(*bytes.Buffer, []byte) []byte
  56. type Updater func(*bytes.Buffer)
  57. type UpdaterI interface {
  58. Update() bool
  59. }
  60. type OutputI interface {
  61. Output() []byte
  62. }
  63. type CursorPos struct {
  64. X, Y int
  65. }
  66. type Mouse struct {
  67. Button int8
  68. X int8
  69. Y int8
  70. }
  71. type MouseMode int
  72. const (
  73. Off MouseMode = 0
  74. X10 MouseMode = 9
  75. Normal MouseMode = 1000
  76. Button MouseMode = 1002
  77. AnyEvent MouseMode = 1003
  78. )
  79. type ReaderData struct {
  80. R rune
  81. Ex Extended
  82. Err error
  83. }
  84. /*
  85. type noCopy struct{}
  86. func (*noCopy) Lock() {}
  87. func (*noCopy) Unlock() {}
  88. noCopy noCopy
  89. */
  90. type Door struct {
  91. Config DropfileConfig
  92. READFD int
  93. WRITEFD int
  94. Writer OSWriter
  95. Disconnected bool // Has User disconnected/Hung up?
  96. TimeOut time.Time // Fixed point in time, when time expires
  97. StartTime time.Time // Time when User started door
  98. Pushback FIFOBuffer[rune] // Key buffer
  99. LastColor []int // Track the last color sent for restore color
  100. ReaderClosed bool // Reader close
  101. readerChannel chan ReaderData // Reading from the User
  102. readerMutex sync.Mutex // Reader close mutex
  103. ReaderEnd bool // Reader should end
  104. LastMouse []Mouse // Store Mouse information
  105. LastCursor []CursorPos // Store Cursor pos information
  106. mcMutex sync.Mutex // Lock for LastMouse, LastCursor
  107. wg sync.WaitGroup
  108. tio_default *term.State // Terminal State to restore
  109. Mouse MouseMode // Mouse mode enabled
  110. }
  111. /*
  112. Enable mouse support
  113. 9 : X10 Support
  114. 1000: Normal
  115. 1002: Button Event
  116. 1003: Any-Event
  117. */
  118. func (d *Door) EnableMouse(mode MouseMode) {
  119. if d.Mouse != Off {
  120. // Disable current mode first
  121. d.DisableMouse()
  122. }
  123. d.Mouse = mode
  124. if d.Mouse != Off {
  125. var output []byte
  126. output = fmt.Appendf(output, "\x1b[?%dh", int(d.Mouse))
  127. d.Write(output)
  128. // d.Write(fmt.Sprintf("\x1b[?%dh", int(d.Mouse)))
  129. }
  130. }
  131. // Disable mouse support
  132. func (d *Door) DisableMouse() {
  133. if d.Mouse != Off {
  134. var output []byte
  135. output = fmt.Appendf(output, "\x1b[?%dl", int(d.Mouse))
  136. d.Write(output)
  137. // d.Write(fmt.Sprintf("\x1b[?%dl", int(d.Mouse)))
  138. }
  139. d.Mouse = Off
  140. }
  141. func (d *Door) AddMouse(mouse Mouse) {
  142. d.mcMutex.Lock()
  143. defer d.mcMutex.Unlock()
  144. d.LastMouse = append(d.LastMouse, mouse)
  145. }
  146. var WantGetMouse bool
  147. func (d *Door) GetMouse() (Mouse, bool) {
  148. if WantGetMouse {
  149. WantGetMouse = false
  150. } else {
  151. log.Println("GetMouse called, but WantGetMouse not true.")
  152. }
  153. d.mcMutex.Lock()
  154. defer d.mcMutex.Unlock()
  155. return ArrayDelete(&d.LastMouse, 0)
  156. }
  157. func (d *Door) GetCursorPos() (CursorPos, bool) {
  158. d.mcMutex.Lock()
  159. if DEBUG_DOOR {
  160. log.Printf("LastCursor %p/%p %d, %d\n", d, &d.LastCursor, len(d.LastCursor), cap(d.LastCursor))
  161. }
  162. defer d.mcMutex.Unlock()
  163. if DEBUG_DOOR {
  164. log.Printf("LastCursor: %#v\n", d.LastCursor)
  165. }
  166. return ArrayDelete(&d.LastCursor, 0)
  167. }
  168. func (d *Door) AddCursorPos(cursor CursorPos) {
  169. d.mcMutex.Lock()
  170. if DEBUG_DOOR {
  171. log.Printf("LastCursor %p/%p %d, %d\n", d, &d.LastCursor, len(d.LastCursor), cap(d.LastCursor))
  172. }
  173. defer d.mcMutex.Unlock()
  174. d.LastCursor = append(d.LastCursor, cursor)
  175. if DEBUG_DOOR {
  176. log.Printf("LastCursor now %d, %d\n", len(d.LastCursor), cap(d.LastCursor))
  177. log.Printf("AddCursor: %#v\n", d.LastCursor)
  178. }
  179. }
  180. func (d *Door) ClearMouseCursor() {
  181. d.mcMutex.Lock()
  182. defer d.mcMutex.Unlock()
  183. if DEBUG_DOOR {
  184. log.Println("ClearMouseCursor")
  185. }
  186. d.LastMouse = make([]Mouse, 0, 2)
  187. d.LastCursor = make([]CursorPos, 0, 3)
  188. }
  189. // Return the amount of time left as time.Duration
  190. func (d *Door) TimeLeft() time.Duration {
  191. return time.Until(d.TimeOut)
  192. }
  193. func (d *Door) TimeUsed() time.Duration {
  194. return time.Since(d.StartTime)
  195. }
  196. func (d *Door) Disconnect() bool {
  197. return d.Disconnected // atomic.LoadInt32(&d.Disconnected) != 0
  198. }
  199. func (d *Door) Detect() bool {
  200. // detect is destructive ... make it non-destructive
  201. // destructive: clears/trashes the screen.
  202. var detect bytes.Buffer
  203. detect.WriteString("\r\x03\x04" + CURSOR_POS + "\b \b\b \b" +
  204. "\r\u2615" + CURSOR_POS + "\b \b\b \b\b \b" +
  205. SAVE_POS + "\x1b[999C\x1b[999B" + CURSOR_POS + RESTORE_POS)
  206. // hot beverage is 3 bytes long -- need 3 "\b \b" to erase.
  207. d.Write(detect.Bytes())
  208. var info []CursorPos = make([]CursorPos, 0, 3)
  209. var done bool
  210. for !done {
  211. _, ex, err := d.WaitKey(time.Second)
  212. log.Println("WaitKey:", ex, err)
  213. if ex == CURSOR {
  214. cursor, ok := d.GetCursorPos()
  215. if ok {
  216. info = append(info, cursor)
  217. if len(info) == 3 {
  218. done = true
  219. }
  220. }
  221. }
  222. if err != nil {
  223. done = true
  224. }
  225. }
  226. if len(info) != 3 {
  227. // Detection FAILED.
  228. log.Println("Detect FAILED:", info)
  229. return false
  230. }
  231. // Ok! Let's see what we've got...
  232. var valid bool
  233. // Where did I get these numbers from?
  234. // linux term (telnet/ssh) [0].X = 1, [1].X = 3
  235. // VS Code terminal: 1, 3
  236. // https://docs.python.org/3/library/unicodedata.html
  237. // \u2615 is a fullwidth (2 char) unicode symbol!
  238. // SO, [1].X == 3 // and not 2.
  239. // syncterm [0].X = 3, [1].X = 4
  240. // Magiterm [0].X = 3, [1].X = 4
  241. // cp437 + telnet [0].X = 1, [1].X = 4 FullCP437 = False
  242. // ^ Fails FullCP437 test - characters codes ignored.
  243. // cp437plus + telnet 3, 4. (Has FullCP437 support.)
  244. // if (info[0].X == 1 || info[0].X == 3) &&
  245. // (info[1].X == 2 || info[1].X == 3) {
  246. // Breakdown by detected type:
  247. // Unicode \x03 \x04 (control codes ignored)
  248. // Unicode \u2615 = fullwidth takes up 2 characters
  249. // CP437 \x03 \x04 Hearts Diamonds Symbols 2 characters
  250. // ^ Only works for FullCP437
  251. // CP437 \u2615 = b'\xe2\x98\x95' 3 bytes
  252. // So info[1].X = 4
  253. if info[0].X == 1 && info[1].X == 3 {
  254. Unicode = true
  255. valid = true
  256. } else {
  257. // info[1].X = 4
  258. Unicode = false
  259. CP437 = true
  260. valid = true
  261. }
  262. if info[0].X == 3 {
  263. Full_CP437 = true
  264. }
  265. if !valid {
  266. log.Println("Detect FAILED (not valid):", info)
  267. return false
  268. }
  269. Width, Height = info[2].X, info[2].Y
  270. // Putty doesn't seem to restoring the cursor position (when detecting).
  271. d.Write(Goto(1, info[0].Y))
  272. log.Printf("Unicode: %t, CP437: %t, Full %t, Screen %v\n", Unicode, CP437, Full_CP437, info[2])
  273. return true
  274. }
  275. // Initialize door framework. Parse commandline, read dropfile,
  276. // detect terminal capabilities.
  277. func (d *Door) Init(doorname string) {
  278. var dropfile string
  279. d.Pushback = NewFIFOBuffer[rune](5)
  280. // Get path to binary, and chdir to it.
  281. var binaryPath string
  282. binaryPath, _ = os.Executable()
  283. binaryPath = filepath.Dir(binaryPath)
  284. _ = os.Chdir(binaryPath)
  285. flag.StringVar(&dropfile, "d", "", "Path to dropfile")
  286. flag.Parse()
  287. if len(dropfile) == 0 {
  288. flag.PrintDefaults()
  289. os.Exit(2)
  290. }
  291. d.ReadDropfile(dropfile)
  292. if d.Config.Comm_type == 0 {
  293. // RAW MODE
  294. d.tio_default, _ = term.MakeRaw(d.READFD)
  295. }
  296. // Logfile will be doorname - node #
  297. var logfilename string = fmt.Sprintf("%s-%d.log", doorname, d.Config.Node)
  298. var logf *os.File
  299. var err error
  300. logf, err = os.OpenFile(logfilename, os.O_APPEND|os.O_CREATE|os.O_RDWR, 0666)
  301. if err != nil {
  302. log.Panicf("Error creating log file %s: %v", logfilename, err)
  303. }
  304. // Set logging output to logfilename.
  305. log.SetOutput(logf)
  306. log.SetFlags(log.Ldate | log.Ltime | log.Lshortfile)
  307. log.Printf("Loading dropfile %s\n", dropfile)
  308. log.Printf("BBS %s, User %s / Handle %s / File %d\n", d.Config.BBSID, d.Config.Real_name, d.Config.Handle, d.Config.Comm_handle)
  309. d.readerChannel = make(chan ReaderData, 16) // was 8 ?
  310. d.ClearMouseCursor()
  311. d.setupChannels()
  312. d.Writer.Init(d)
  313. d.Detect()
  314. if Unicode {
  315. BOXES = BOXES_UNICODE
  316. BARS = BARS_UNICODE
  317. } else {
  318. BOXES = BOXES_CP437
  319. BARS = BARS_CP437
  320. }
  321. }
  322. func (d *Door) Close() {
  323. defer func() {
  324. if err := recover(); err != nil {
  325. log.Println("door.Close FAILURE:", err)
  326. // This displays stack trace stderr
  327. debug.PrintStack()
  328. }
  329. }()
  330. d.DisableMouse()
  331. // This disables anymore Writes.
  332. d.Writer.Stop()
  333. /*
  334. d.writerMutex.Lock()
  335. d.WriterClosed = true
  336. d.writerMutex.Unlock()
  337. */
  338. // I need a way to shutdown the reader.
  339. // This isn't shutting it down, we hang on d.wg.Wait()
  340. d.readerMutex.Lock()
  341. // d.ReaderClosed = true
  342. d.ReaderEnd = true
  343. d.readerMutex.Unlock()
  344. // log.Println("Closing...")
  345. // close(d.writerChannel)
  346. log.Println("wg.Wait()")
  347. d.wg.Wait()
  348. log.Println("Closed.")
  349. if d.Config.Comm_type == 0 {
  350. // Linux - restore console settings to default/original.
  351. term.Restore(d.READFD, d.tio_default)
  352. }
  353. }
  354. // Goto X, Y - Position the cursor using ANSI Escape Codes
  355. //
  356. // Example:
  357. //
  358. // d.Write(door.Goto(1, 5) + "Now at X=1, Y=5.")
  359. func Goto(x int, y int) []byte {
  360. var output []byte
  361. output = fmt.Appendf(output, "\x1b[%d;%dH", y, x)
  362. return output
  363. }
  364. func GotoS(x int, y int) string {
  365. return fmt.Sprintf("\x1b[%d;%dH", y, x)
  366. }
  367. func (d *Door) setupChannels() {
  368. d.wg.Add(1)
  369. go Reader(d)
  370. }