Bill Currie
ac3fef6dd8
[qwaq] Fix a harmless typo
...
Amusing, though... it was cursed (segaulted).
2020-03-21 12:58:07 +09:00
Bill Currie
cf9455293b
[qwaq] Start threads for progs and curses
...
No idea if anything works, probably come crashing down in a flaming pile
of debris.
2020-03-21 12:58:07 +09:00
Bill Currie
6c1a026bf1
[qwaq] Change thread data array to pointers
...
I realized that with dynamic thread creation the arrays resizing could
cause them to move around in memory which would be bad for anything
holding a pointer to the data, and even using indices wouldn't help that
much as the array would need to be mutex protected.
2020-03-21 12:58:07 +09:00
Bill Currie
f14f2f518a
[qwaq] Rename thread_args to thread_data
2020-03-21 12:58:07 +09:00
Bill Currie
93886d6cd7
[qwaq] Use main args non-options as progs files
...
If none are specified, default to qwaq-app.dat (for now, anyway). For
each progs file, an optional args set can be specified in the same order
(separated by --). Missing sets default to empty, excess sets are
ignored.
2020-03-21 12:58:07 +09:00
Bill Currie
0cc28c8641
[qwaq] Run main thread
...
And only thread, still, so things lock up still, but they're coming
together.
2020-03-21 12:58:07 +09:00
Bill Currie
a5f57a8a4c
[qwaq] Parse arguments into sets
...
The sets are separated by --, and the first set is passed to
getopt_long which currently recognizes only --qargs and non-options. The
--qargs options parses out a set (to -- or end of args) that is passed
to the qargs sub-system for standard qf command line parsing. Set 0 is
for the main qwaq application. Any additional sets (excluding --qargs)
will be used to spawn additional threads when that's working.
2020-03-21 12:58:07 +09:00
Bill Currie
52a46f5d5c
[qwaq] Use allocate progs instead of static
2020-03-21 12:58:07 +09:00
Bill Currie
74ed057a5f
[qwaq] Begin move over to threading
...
Of course, it currently locks up, but there aren't any other threads as
of yet so the queues starve.
2020-03-21 12:58:07 +09:00
Bill Currie
ec12941fcb
Move the ring buffer macros to their own header
...
They seem to have proven themselves to be robust.
2020-03-19 23:53:54 +09:00
Bill Currie
65538104bf
[qwaq] Tweak listener message names
...
I didn't like the message:message bit
2020-03-19 23:18:01 +09:00
Bill Currie
ac23156ecd
[qwaq] Clamp window motion to owner's bounds
2020-03-19 21:28:55 +09:00
Bill Currie
f329ca83b6
[qwaq] Ensure background color clearing works
...
Even with 0 for the character, colors should get into the buffer.
2020-03-19 20:41:29 +09:00
Bill Currie
3a28d84c3f
[qwaq] Implement window dragging
...
Other than the stray panel_free, that was surprisingly easy. However, do
need to check that the window can be moved otherwise window pos and
panel pos will get out of sync.
2020-03-19 20:31:59 +09:00
Bill Currie
fe4f831512
[qwaq] Remove a pile of stray panel_free calls
...
C&P programming FTW :P
2020-03-19 20:31:01 +09:00
Bill Currie
f027a42e72
[qwaq] Treat 0 as transparent character
2020-03-19 19:53:32 +09:00
Bill Currie
14fbdc7df9
[qwaq] Clean up debug in TextContext
2020-03-19 19:35:19 +09:00
Bill Currie
e8d947ed8a
[qwaq] Get click and drag reporting working
2020-03-19 19:25:57 +09:00
Bill Currie
95d20d67c7
[qwaq] Implement mouse grabbing
...
Button will need it for dragging.
2020-03-19 19:00:03 +09:00
Bill Currie
2c20a031e4
[qwaq] Do up a little button test "scene"
...
Hmm... "scene"... too much Unity?
2020-03-19 18:41:53 +09:00
Bill Currie
cce6837fe8
[qwaq] Offset event mouse coordinates
...
Each level of the object hierarchy has its own offset relative to the
level above, but mouse coordinates are absolute.
2020-03-19 18:40:21 +09:00
Bill Currie
28a9e041e6
[qwaq] Implement Group redraw
2020-03-19 18:39:11 +09:00
Bill Currie
8bd702ab1a
[qwaq] Fetch View origin and size separately
2020-03-19 18:38:24 +09:00
Bill Currie
e49ba896aa
[qwaq] Support background and clearing in DrawBuffer
2020-03-19 18:37:25 +09:00
Bill Currie
490f1ad4b8
[qwaq] Add wrappers for werase
2020-03-19 18:37:05 +09:00
Bill Currie
ec2409ceba
[qwaq] Mention that Window knows addView
2020-03-19 17:34:29 +09:00
Bill Currie
1306d9fcdd
[qwaq] Fix some issues in Listener*
2020-03-19 17:33:47 +09:00
Bill Currie
19161ea80a
[qwaq] Clean things up in prep for button testing
2020-03-19 16:27:30 +09:00
Bill Currie
23e6b49845
[qwaq] Implement mouse enter/leave events
2020-03-19 15:55:57 +09:00
Bill Currie
3e9977c272
[qwaq] Give up on pass-by-reference for now
...
It's too much hassle to ensure the passed variable isn't a local. It's
just not worth the grief right now.
2020-03-19 15:54:10 +09:00
Bill Currie
db39f7ed3e
[qwaq] Add hover listener to button
...
Forgot about this (very useful for tooltips etc).
2020-03-19 13:57:10 +09:00
Bill Currie
bd3884f6fa
[qwaq] Add a button class
...
It may or may not work just yet, but I think it's the right direction.
2020-03-19 13:52:14 +09:00
Bill Currie
6a18b1dd55
[qwaq] Add function to merge extents
...
It's pretty much the union of two rectangles with the same origin.
2020-03-19 13:51:14 +09:00
Bill Currie
03f87d6f27
[qwaq] Add pos Point alias
2020-03-19 13:50:35 +09:00
Bill Currie
8c3cf83f02
[qwaq] Add Listener and ListenerGroup delegates
...
Simple single parameter (caller) direct messages.
2020-03-19 13:49:27 +09:00
Bill Currie
01835cbd94
[qwaq] Add blitFromBuffer to TextContext protocol
2020-03-19 13:48:48 +09:00
Bill Currie
2f3ca9d9e4
[qwaq] Clean up the hierarchy
...
I think I've finally figured out what I want the core hierarchy to be.
Right now, it's just the two classes: View and Window (derived from
View). Window has a Group, and Group is just a collection of Views that
it manages. QwaqApplication is just an object but like a Window, it has
a Group of views.
View
Window has a Group
Group contains Views
QwaqApplication has a group
More work needs to be done on drawing and event handling, but things are
working again.
2020-03-19 11:32:44 +09:00
Bill Currie
b16093a533
[qwaq] Split out Array(Group) interface
2020-03-19 11:04:02 +09:00
Bill Currie
f6f6b2cba3
[qwaq] Doc the issue number for blit slug
2020-03-18 01:40:58 +09:00
Bill Currie
affadc3d25
[qwaq] Create protocols for DrawBuffer and TextContext
...
Plenty of flaws at the moment (casts to id :/), but the basic idea seems
to be ok.
2020-03-18 01:40:41 +09:00
Bill Currie
e5bc6dd8b6
[qwaq] Split Array(Group) into its own file
2020-03-18 01:12:23 +09:00
Bill Currie
28a8c1fda7
[qwaq] Implement more curses wrappers
2020-03-17 14:05:31 +09:00
Bill Currie
877ad35a82
[qwaq] Rework the hierarchy again
...
It doesn't work right now because View unconditionally sends refresh to
its textContext, but textContext can be a draw buffer which does not
respond to refresh. Still, these changes (notably the assignment chain
in qwaq-group.r really pushed qfcc).
2020-03-14 19:45:07 +09:00
Bill Currie
6001abbfdb
[qwaq] Use the now working compound init more
2020-03-13 10:00:05 +09:00
Bill Currie
45acbddb79
[qwaq] Make DrawBuffer and TextContext sizes available
2020-03-13 03:09:42 +09:00
Bill Currie
1d3c8d8a6c
[qwaq] Sort out mess around placement of getwrect
2020-03-13 03:09:42 +09:00
Bill Currie
d0f21ec2b4
[qwaq] Add -refresh to TextContext
...
This does the right thing in the presence of panels and dealing with
stdscr.
2020-03-13 03:09:42 +09:00
Bill Currie
3defe50be6
[qwaq] Add printf builtin to ease debugging
2020-03-13 02:41:08 +09:00
Bill Currie
7f9a415cbc
[qwaq] Get DrawBuffer and TextContext working
...
Especially blitting whole regions. Partial regions not tested yet.
2020-03-13 02:36:53 +09:00
Bill Currie
0d4c7ba10f
[cl_menu] Update plist usage of obj_msg_sendv
...
Wonder if there's anywhere else...
2020-03-12 00:52:42 +09:00