forked from sharplispers/clx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
text.lisp
1054 lines (1005 loc) · 42.1 KB
/
text.lisp
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;;; -*- Mode: LISP; Syntax: Common-lisp; Package: XLIB; Base: 10; Lowercase: Yes -*-
;;; CLX text keyboard and pointer requests
;;;
;;; TEXAS INSTRUMENTS INCORPORATED
;;; P.O. BOX 2909
;;; AUSTIN, TEXAS 78769
;;;
;;; Copyright (C) 1987 Texas Instruments Incorporated.
;;;
;;; Permission is granted to any individual or institution to use, copy, modify,
;;; and distribute this software, provided that this complete copyright and
;;; permission notice is maintained, intact, in all copies and supporting
;;; documentation.
;;;
;;; Texas Instruments Incorporated provides this software "as is" without
;;; express or implied warranty.
;;;
(in-package :xlib)
;; Strings are broken up into chunks of this size
(defparameter *max-string-size* 254)
;; In the functions below, the transform is used to convert an element of the
;; sequence into a font index. The transform is applied to each element of the
;; (sub)sequence, until either the transform returns nil or the end of the
;; (sub)sequence is reached. If transform returns nil for an element, the
;; index of that element in the sequence is returned, otherwise nil is
;; returned.
(deftype translation-function ()
#+explorer t
#-explorer
'(function (sequence array-index array-index (or null font) vector array-index)
(values array-index (or null int16 font) (or null int32))))
;; In the functions below, if width is specified, it is assumed to be the pixel
;; width of whatever string of glyphs is actually drawn. Specifying width will
;; allow for appending the output of subsequent calls to the same protocol
;; request, provided gcontext has not been modified in the interim. If width
;; is not specified, appending of subsequent output might not occur.
;; Specifying width is simply a hint, for performance. Note that specifying
;; width may be difficult if transform can return nil.
(defun translate-default (src src-start src-end font dst dst-start)
;; dst is guaranteed to have room for (- src-end src-start) integer elements,
;; starting at dst-start; whether dst holds 8-bit or 16-bit elements depends
;; on context. font is the current font, if known. The function should
;; translate as many elements of src as possible into indexes in the current
;; font, and store them into dst.
;;
;; The first return value should be the src index of the first untranslated
;; element. If no further elements need to be translated, the second return
;; value should be nil. If a horizontal motion is required before further
;; translation, the second return value should be the delta in x coordinate.
;; If a font change is required for further translation, the second return
;; value should be the new font. If known, the pixel width of the translated
;; text can be returned as the third value; this can allow for appending of
;; subsequent output to the same protocol request, if no overall width has
;; been specified at the higher level.
;; (returns values: ending-index
;; (OR null horizontal-motion font)
;; (OR null translated-width))
(declare (type sequence src)
(type array-index src-start src-end dst-start)
(type (or null font) font)
(type vector dst)
(inline graphic-char-p))
(declare (clx-values integer (or null integer font) (or null integer)))
(let ((min-char-index (and font (xlib:font-min-char font)))
(max-char-index (and font (xlib:font-max-char font))))
(if (stringp src)
(do ((i src-start (index+ i 1))
(j dst-start (index+ j 1))
(char))
((index>= i src-end)
i)
(declare (type array-index i j))
(setf char (char->card8 (char src i)))
(if (and font (or (< char min-char-index) (> char max-char-index)))
(return i)
(setf (aref dst j) char)))
(do ((i src-start (index+ i 1))
(j dst-start (index+ j 1))
(elt))
((index>= i src-end)
i)
(declare (type array-index i j))
(setq elt (elt src i))
(when (characterp elt) (setq elt (char->card8 elt)))
(if (or (not (integerp elt))
(and font
(< elt min-char-index)
(> elt max-char-index)))
(return i)
(setf (aref dst j) elt))))))
;; There is a question below of whether translate should always be required, or
;; if not, what the default should be or where it should come from. For
;; example, the default could be something that expected a string as src and
;; translated the CL standard character set to ASCII indexes, and ignored fonts
;; and bits. Or the default could expect a string but otherwise be "system
;; dependent". Or the default could be something that expected a vector of
;; integers and did no translation. Or the default could come from the
;; gcontext (but what about text-extents and text-width?).
(defun text-extents (font sequence &key (start 0) end translate)
;; If multiple fonts are involved, font-ascent and font-descent will be the
;; maximums. If multiple directions are involved, the direction will be nil.
;; Translate will always be called with a 16-bit dst buffer.
(declare (type sequence sequence)
(type (or font gcontext) font))
(declare (type (or null translation-function) translate)
(dynamic-extent translate))
(declare (clx-values width ascent descent left right
font-ascent font-descent direction
(or null array-index)))
(when (type? font 'gcontext)
(force-gcontext-changes font)
(setq font (gcontext-font font t)))
(check-type font font)
(let* ((left-bearing 0)
(right-bearing 0)
;; Sum of widths
(width 0)
(ascent 0)
(descent 0)
(overall-ascent (font-ascent font))
(overall-descent (font-descent font))
(overall-direction (font-direction font))
(next-start nil)
(display (font-display font)))
(declare (type int16 ascent descent overall-ascent overall-descent)
(type int32 left-bearing right-bearing width)
(type (or null array-index) next-start)
(type display display))
(with-display (display)
(do* ((wbuf (display-tbuf16 display))
(src-end (or end (length sequence)))
(src-start start (index+ src-start buf-end))
(end (index-min src-end (index+ src-start +buffer-text16-size+))
(index-min src-end (index+ src-start +buffer-text16-size+)))
(buf-end 0)
(new-font)
(font-ascent 0)
(font-descent 0)
(font-direction)
(stop-p nil))
((or stop-p (index>= src-start src-end))
(when (index< src-start src-end)
(setq next-start src-start)))
(declare (type buffer-text16 wbuf)
(type array-index src-start src-end end buf-end)
(type int16 font-ascent font-descent)
(type generalized-boolean stop-p))
;; Translate the text
(multiple-value-setq (buf-end new-font)
(funcall (or translate #'translate-default)
sequence src-start end font wbuf 0))
(setq buf-end (- buf-end src-start))
(cond ((null new-font) (setq stop-p t))
((integerp new-font) (incf width (the int32 new-font))))
(let (w a d l r)
(if (or (font-char-infos-internal font) (font-local-only-p font))
;; Calculate text extents locally
(progn
(multiple-value-setq (w a d l r)
(text-extents-local font wbuf 0 buf-end nil))
(setq font-ascent (the int16 (font-ascent font))
font-descent (the int16 (font-descent font))
font-direction (font-direction font)))
;; Let the server calculate text extents
(multiple-value-setq
(w a d l r font-ascent font-descent font-direction)
(text-extents-server font wbuf 0 buf-end)))
(incf width (the int32 w))
(cond ((index= src-start start)
(setq left-bearing (the int32 l))
(setq right-bearing (the int32 r))
(setq ascent (the int16 a))
(setq descent (the int16 d)))
(t
(setq left-bearing (the int32 (min left-bearing (the int32 l))))
(setq right-bearing (the int32 (max right-bearing (the int32 r))))
(setq ascent (the int16 (max ascent (the int16 a))))
(setq descent (the int16 (max descent (the int16 d)))))))
(when (type? new-font 'font)
(setq font new-font))
(setq overall-ascent (the int16 (max overall-ascent font-ascent)))
(setq overall-descent (the int16 (max overall-descent font-descent)))
(case overall-direction
(:unknown (setq overall-direction font-direction))
(:left-to-right (unless (eq font-direction :left-to-right)
(setq overall-direction nil)))
(:right-to-left (unless (eq font-direction :right-to-left)
(setq overall-direction nil))))))
(values width
ascent
descent
left-bearing
right-bearing
overall-ascent
overall-descent
overall-direction
next-start)))
(defun text-width (font sequence &key (start 0) end translate)
;; Translate will always be called with a 16-bit dst buffer.
(declare (type sequence sequence)
(type (or font gcontext) font)
(type array-index start)
(type (or null array-index) end))
(declare (type (or null translation-function) translate)
(dynamic-extent translate))
(declare (clx-values integer (or null integer)))
(when (type? font 'gcontext)
(force-gcontext-changes font)
(setq font (gcontext-font font t)))
(check-type font font)
(let* ((width 0)
(next-start nil)
(display (font-display font)))
(declare (type int32 width)
(type (or null array-index) next-start)
(type display display))
(with-display (display)
(do* ((wbuf (display-tbuf16 display))
(src-end (or end (length sequence)))
(src-start start (index+ src-start buf-end))
(end (index-min src-end (index+ src-start +buffer-text16-size+))
(index-min src-end (index+ src-start +buffer-text16-size+)))
(buf-end 0)
(new-font)
(stop-p nil))
((or stop-p (index>= src-start src-end))
(when (index< src-start src-end)
(setq next-start src-start)))
(declare (type buffer-text16 wbuf)
(type array-index src-start src-end end buf-end)
(type generalized-boolean stop-p))
;; Translate the text
(multiple-value-setq (buf-end new-font)
(funcall (or translate #'translate-default)
sequence src-start end font wbuf 0))
(setq buf-end (- buf-end src-start))
(cond ((null new-font) (setq stop-p t))
((integerp new-font) (incf width (the int32 new-font))))
(incf width
(if (or (font-char-infos-internal font) (font-local-only-p font))
(text-extents-local font wbuf 0 buf-end :width-only)
(text-width-server font wbuf 0 buf-end)))
(when (type? new-font 'font)
(setq font new-font))))
(values width next-start)))
(defun text-extents-server (font sequence start end)
(declare (type font font)
(type sequence sequence)
(type array-index start end))
(declare (clx-values width ascent descent left right font-ascent font-descent direction))
(let ((display (font-display font))
(length (index- end start))
(font-id (font-id font)))
(declare (type display display)
(type array-index length)
(type resource-id font-id))
(with-buffer-request-and-reply (display +x-querytextextents+ 28 :sizes (8 16 32))
(((data boolean) (oddp length))
(length (index+ (index-ceiling length 2) 2))
(resource-id font-id)
((sequence :format char2b :start start :end end :appending t)
sequence))
(values
(integer-get 16)
(int16-get 12)
(int16-get 14)
(integer-get 20)
(integer-get 24)
(int16-get 8)
(int16-get 10)
(member8-get 1 :left-to-right :right-to-left)))))
(defun text-width-server (font sequence start end)
(declare (type (or font gcontext) font)
(type sequence sequence)
(type array-index start end))
(declare (clx-values integer))
(let ((display (font-display font))
(length (index- end start))
(font-id (font-id font)))
(declare (type display display)
(type array-index length)
(type resource-id font-id))
(with-buffer-request-and-reply (display +x-querytextextents+ 28 :sizes 32)
(((data boolean) (oddp length))
(length (index+ (index-ceiling length 2) 2))
(resource-id font-id)
((sequence :format char2b :start start :end end :appending t)
sequence))
(values (integer-get 16)))))
(defun text-extents-local (font sequence start end width-only-p)
(declare (type font font)
(type sequence sequence)
(type integer start end)
(type generalized-boolean width-only-p))
(declare (clx-values width ascent descent overall-left overall-right))
(let* ((char-infos (font-char-infos font))
(font-info (font-font-info font)))
(declare (type font-info font-info))
(declare (type (simple-array int16 (*)) char-infos))
(if (zerop (length char-infos))
;; Fixed width font
(let* ((font-width (max-char-width font))
(font-ascent (max-char-ascent font))
(font-descent (max-char-descent font))
(width (* (index- end start) font-width)))
(declare (type int16 font-width font-ascent font-descent)
(type int32 width))
(if width-only-p
width
(values width
font-ascent
font-descent
(max-char-left-bearing font)
(+ width (- font-width) (max-char-right-bearing font)))))
;; Variable-width font
(let* ((first-col (font-info-min-byte2 font-info))
(num-cols (1+ (- (font-info-max-byte2 font-info) first-col)))
(first-row (font-info-min-byte1 font-info))
(last-row (font-info-max-byte1 font-info))
(num-rows (1+ (- last-row first-row))))
(declare (type card8 first-col first-row last-row)
(type card16 num-cols num-rows))
(if (or (plusp first-row) (plusp last-row))
;; Matrix (16 bit) font
(macrolet ((char-info-elt (sequence elt)
`(let* ((char (the card16 (elt ,sequence ,elt)))
(row (- (ash char -8) first-row))
(col (- (logand char #xff) first-col)))
(declare (type card16 char)
(type int16 row col))
(if (and (< -1 row num-rows) (< -1 col num-cols))
(index* 6 (index+ (index* row num-cols) col))
-1))))
(if width-only-p
(do ((i start (index1+ i))
(width 0))
((index>= i end) width)
(declare (type array-index i)
(type int32 width))
(let ((n (char-info-elt sequence i)))
(declare (type fixnum n))
(unless (minusp n) ;; Ignore characters not in the font
(incf width (the int16 (aref char-infos (index+ 2 n)))))))
;; extents
(do ((i start (index1+ i))
(width 0)
(ascent #x-7fff)
(descent #x-7fff)
(left #x7fff)
(right #x-7fff))
((index>= i end)
(values width ascent descent left right))
(declare (type array-index i)
(type int16 ascent descent)
(type int32 width left right))
(let ((n (char-info-elt sequence i)))
(declare (type fixnum n))
(unless (minusp n) ;; Ignore characters not in the font
(setq left (min left (+ width (aref char-infos n))))
(setq right (max right (+ width (aref char-infos (index1+ n)))))
(incf width (aref char-infos (index+ 2 n)))
(setq ascent (max ascent (aref char-infos (index+ 3 n))))
(setq descent (max descent (aref char-infos (index+ 4 n)))))))))
;; Non-matrix (8 bit) font
;; The code here is identical to the above, except for the following macro:
(macrolet ((char-info-elt (sequence elt)
`(let ((col (- (the card16 (elt ,sequence ,elt)) first-col)))
(declare (type int16 col))
(if (< -1 col num-cols)
(index* 6 col)
-1))))
(if width-only-p
(do ((i start (index1+ i))
(width 0))
((index>= i end) width)
(declare (type array-index i)
(type int32 width))
(let ((n (char-info-elt sequence i)))
(declare (type fixnum n))
(unless (minusp n) ;; Ignore characters not in the font
(incf width (the int16 (aref char-infos (index+ 2 n)))))))
;; extents
(do ((i start (index1+ i))
(width 0)
(ascent #x-7fff)
(descent #x-7fff)
(left #x7fff)
(right #x-7fff))
((index>= i end)
(values width ascent descent left right))
(declare (type array-index i)
(type int16 ascent descent)
(type int32 width left right))
(let ((n (char-info-elt sequence i)))
(declare (type fixnum n))
(unless (minusp n) ;; Ignore characters not in the font
(setq left (min left (+ width (aref char-infos n))))
(setq right (max right (+ width (aref char-infos (index1+ n)))))
(incf width (aref char-infos (index+ 2 n)))
(setq ascent (max ascent (aref char-infos (index+ 3 n))))
(setq descent (max descent (aref char-infos (index+ 4 n)))))
))))
)))))
;;-----------------------------------------------------------------------------
;; This controls the element size of the dst buffer given to translate. If
;; :default is specified, the size will be based on the current font, if known,
;; and otherwise 16 will be used. [An alternative would be to pass the buffer
;; size to translate, and allow it to return the desired size if it doesn't
;; like the current size. The problem is that the protocol doesn't allow
;; switching within a single request, so to allow switching would require
;; knowing the width of text, which isn't necessarily known. We could call
;; text-width to compute it, but perhaps that is doing too many favors?] [An
;; additional possibility is to allow an index-size of :two-byte, in which case
;; translate would be given a double-length 8-bit array, and translate would be
;; expected to store first-byte/second-byte instead of 16-bit integers.]
(deftype index-size () '(member :default 8 16))
;; In the functions below, if width is specified, it is assumed to be the total
;; pixel width of whatever string of glyphs is actually drawn. Specifying
;; width will allow for appending the output of subsequent calls to the same
;; protocol request, provided gcontext has not been modified in the interim.
;; If width is not specified, appending of subsequent output might not occur
;; (unless translate returns the width). Specifying width is simply a hint,
;; for performance.
(defun draw-glyph (drawable gcontext x y elt
&key translate width (size :default))
;; Returns true if elt is output, nil if translate refuses to output it.
;; Second result is width, if known.
(declare (type drawable drawable)
(type gcontext gcontext)
(type int16 x y)
(type (or null int32) width)
(type index-size size))
(declare (type (or null translation-function) translate)
(dynamic-extent translate))
(declare (clx-values generalized-boolean (or null int32)))
(let* ((display (gcontext-display gcontext))
(result t)
(opcode +x-polytext8+))
(declare (type display display))
(let ((vector (allocate-gcontext-state)))
(declare (type gcontext-state vector))
(setf (aref vector 0) elt)
(multiple-value-bind (new-start new-font translate-width)
(funcall (or translate #'translate-default)
vector 0 1 (gcontext-font gcontext nil) vector 1)
;; Allow translate to set a new font
(when (type? new-font 'font)
(setf (gcontext-font gcontext) new-font)
(multiple-value-setq (new-start new-font translate-width)
(funcall translate vector 0 1 new-font vector 1)))
;; If new-start is zero, translate refuses to output it
(setq result (index-plusp new-start)
elt (aref vector 1))
(deallocate-gcontext-state vector)
(when translate-width (setq width translate-width))))
(when result
(when (eql size 16)
(setq opcode +x-polytext16+)
(setq elt (dpb elt (byte 8 8) (ldb (byte 8 8) elt))))
(with-buffer-request (display opcode :gc-force gcontext)
(drawable drawable)
(gcontext gcontext)
(int16 x y)
(card8 1 0)
(card8 (ldb (byte 8 0) elt))
(card8 (ldb (byte 8 8) elt)))
(values t width))))
(defun draw-glyphs (drawable gcontext x y sequence
&key (start 0) end translate width (size :default))
;; First result is new start, if end was not reached. Second result is
;; overall width, if known.
(declare (type drawable drawable)
(type gcontext gcontext)
(type int16 x y)
(type array-index start)
(type sequence sequence)
(type (or null array-index) end)
(type (or null int32) width)
(type index-size size))
(declare (type (or null translation-function) translate)
(dynamic-extent translate))
(declare (clx-values (or null array-index) (or null int32)))
(unless end (setq end (length sequence)))
(ecase size
((:default 8) (draw-glyphs8 drawable gcontext x y sequence start end
(or translate #'translate-default) width))
(16 (draw-glyphs16 drawable gcontext x y sequence start end
(or translate #'translate-default) width))))
(defun draw-glyphs8 (drawable gcontext x y sequence start end translate width)
;; First result is new start, if end was not reached. Second result is
;; overall width, if known.
(declare (type drawable drawable)
(type gcontext gcontext)
(type int16 x y)
(type array-index start)
(type sequence sequence)
(type (or null array-index) end)
(type (or null int32) width))
(declare (clx-values (or null array-index) (or null int32)))
(declare (type translation-function translate)
(dynamic-extent translate))
(let* ((src-start start)
(src-end (or end (length sequence)))
(next-start nil)
(length (index- src-end src-start))
(request-length (* length 2)) ; Leave lots of room for font shifts.
(display (gcontext-display gcontext))
(font (gcontext-font gcontext nil)))
(declare (type array-index src-start src-end length)
(type (or null array-index) next-start)
(type display display))
(with-buffer-request (display +x-polytext8+ :gc-force gcontext :length request-length)
(drawable drawable)
(gcontext gcontext)
(int16 x y)
(progn
;; Don't let any flushes happen since we manually set the request
;; length when we're done.
(with-buffer-flush-inhibited (display)
(do* ((boffset (index+ buffer-boffset 16))
(src-chunk 0)
(dst-chunk 0)
(offset 0)
(overall-width 0)
(stop-p nil))
((or stop-p (zerop length))
;; Ensure terminated with zero bytes
(do ((end (the array-index (lround boffset))))
((index>= boffset end))
(setf (aref buffer-bbuf boffset) 0)
(index-incf boffset))
(length-put 2 (index-ash (index- boffset buffer-boffset) -2))
(setf (buffer-boffset display) boffset)
(unless (index-zerop length) (setq next-start src-start))
(when overall-width (setq width overall-width)))
(declare (type array-index src-chunk dst-chunk offset)
(type (or null int32) overall-width)
(type generalized-boolean stop-p))
(setq src-chunk (index-min length *max-string-size*))
(multiple-value-bind (new-start new-font translated-width)
(funcall translate
sequence src-start (index+ src-start src-chunk)
font buffer-bbuf (index+ boffset 2))
(setq dst-chunk (index- new-start src-start)
length (index- length dst-chunk)
src-start new-start)
(if translated-width
(when overall-width (incf overall-width translated-width))
(setq overall-width nil))
(when (index-plusp dst-chunk)
(setf (aref buffer-bbuf boffset) dst-chunk)
(setf (aref buffer-bbuf (index+ boffset 1)) offset)
(incf boffset (index+ dst-chunk 2)))
(setq offset 0)
(cond ((null new-font)
;; Don't stop if translate copied whole chunk
(unless (index= src-chunk dst-chunk)
(setq stop-p t)))
((integerp new-font) (setq offset new-font))
((type? new-font 'font)
(setq font new-font)
(let ((font-id (font-id font))
(buffer-boffset boffset))
(declare (type resource-id font-id)
(type array-index buffer-boffset))
;; This changes the gcontext font in the server
;; Update the gcontext cache (both local and server state)
(let ((local-state (gcontext-local-state gcontext))
(server-state (gcontext-server-state gcontext)))
(declare (type gcontext-state local-state server-state))
(setf (gcontext-internal-font-obj server-state) font
(gcontext-internal-font server-state) font-id)
(without-interrupts
(setf (gcontext-internal-font-obj local-state) font
(gcontext-internal-font local-state) font-id)))
(card8-put 0 #xff)
(card8-put 1 (ldb (byte 8 24) font-id))
(card8-put 2 (ldb (byte 8 16) font-id))
(card8-put 3 (ldb (byte 8 8) font-id))
(card8-put 4 (ldb (byte 8 0) font-id)))
(index-incf boffset 5)))
)))))
(values next-start width)))
;; NOTE: After the first font change by the TRANSLATE function, characters are no-longer
;; on 16bit boundaries and this function garbles the bytes.
(defun draw-glyphs16 (drawable gcontext x y sequence start end translate width)
;; First result is new start, if end was not reached. Second result is
;; overall width, if known.
(declare (type drawable drawable)
(type gcontext gcontext)
(type int16 x y)
(type array-index start)
(type sequence sequence)
(type (or null array-index) end)
(type (or null int32) width))
(declare (clx-values (or null array-index) (or null int32)))
(declare (type translation-function translate)
(dynamic-extent translate))
(let* ((src-start start)
(src-end (or end (length sequence)))
(next-start nil)
(length (index- src-end src-start))
(request-length (* length 3)) ; Leave lots of room for font shifts.
(display (gcontext-display gcontext))
(font (gcontext-font gcontext nil))
(buffer (display-tbuf16 display)))
(declare (type array-index src-start src-end length)
(type (or null array-index) next-start)
(type display display)
(type buffer-text16 buffer))
(with-buffer-request (display +x-polytext16+ :gc-force gcontext :length request-length)
(drawable drawable)
(gcontext gcontext)
(int16 x y)
(progn
;; Don't let any flushes happen since we manually set the request
;; length when we're done.
(with-buffer-flush-inhibited (display)
(do* ((boffset (index+ buffer-boffset 16))
(src-chunk 0)
(dst-chunk 0)
(offset 0)
(overall-width 0)
(stop-p nil))
((or stop-p (zerop length))
;; Ensure terminated with zero bytes
(do ((end (lround boffset)))
((index>= boffset end))
(setf (aref buffer-bbuf boffset) 0)
(index-incf boffset))
(length-put 2 (index-ash (index- boffset buffer-boffset) -2))
(setf (buffer-boffset display) boffset)
(unless (zerop length) (setq next-start src-start))
(when overall-width (setq width overall-width)))
(declare (type array-index boffset src-chunk dst-chunk offset)
(type (or null int32) overall-width)
(type generalized-boolean stop-p))
(setq src-chunk (index-min length *max-string-size*))
(multiple-value-bind (new-start new-font translated-width)
(funcall translate
sequence src-start (index+ src-start src-chunk)
font buffer 0)
(setq dst-chunk (index- new-start src-start)
length (index- length dst-chunk)
src-start new-start)
(write-sequence-char2b display (index+ boffset 2) buffer 0 dst-chunk)
(if translated-width
(when overall-width (incf overall-width translated-width))
(setq overall-width nil))
(when (index-plusp dst-chunk)
(setf (aref buffer-bbuf boffset) dst-chunk)
(setf (aref buffer-bbuf (index+ boffset 1)) offset)
(index-incf boffset (index+ dst-chunk dst-chunk 2)))
(setq offset 0)
(cond ((null new-font)
;; Don't stop if translate copied whole chunk
(unless (index= src-chunk dst-chunk)
(setq stop-p t)))
((integerp new-font) (setq offset new-font))
((type? new-font 'font)
(setq font new-font)
(let ((font-id (font-id font))
(buffer-boffset boffset))
(declare (type resource-id font-id)
(type array-index buffer-boffset))
;; This changes the gcontext font in the SERVER
;; Update the gcontext cache (both local and server state)
(let ((local-state (gcontext-local-state gcontext))
(server-state (gcontext-server-state gcontext)))
(declare (type gcontext-state local-state server-state))
(setf (gcontext-internal-font-obj server-state) font
(gcontext-internal-font server-state) font-id)
(without-interrupts
(setf (gcontext-internal-font-obj local-state) font
(gcontext-internal-font local-state) font-id)))
(card8-put 0 #xff)
(card8-put 1 (ldb (byte 8 24) font-id))
(card8-put 2 (ldb (byte 8 16) font-id))
(card8-put 3 (ldb (byte 8 8) font-id))
(card8-put 4 (ldb (byte 8 0) font-id)))
(index-incf boffset 5)))
)))))
(values next-start width)))
(defun draw-image-glyph (drawable gcontext x y elt
&key translate width (size :default))
;; Returns true if elt is output, nil if translate refuses to output it.
;; Second result is overall width, if known. An initial font change is
;; allowed from translate.
(declare (type drawable drawable)
(type gcontext gcontext)
(type int16 x y)
(type (or null int32) width)
(type index-size size))
(declare (type (or null translation-function) translate)
(dynamic-extent translate))
(declare (clx-values generalized-boolean (or null int32)))
(let* ((display (gcontext-display gcontext))
(result t)
(opcode +x-imagetext8+))
(declare (type display display))
(let ((vector (allocate-gcontext-state)))
(declare (type gcontext-state vector))
(setf (aref vector 0) elt)
(multiple-value-bind (new-start new-font translate-width)
(funcall (or translate #'translate-default)
vector 0 1 (gcontext-font gcontext nil) vector 1)
;; Allow translate to set a new font
(when (type? new-font 'font)
(setf (gcontext-font gcontext) new-font)
(multiple-value-setq (new-start new-font translate-width)
(funcall translate vector 0 1 new-font vector 1)))
;; If new-start is zero, translate refuses to output it
(setq result (index-plusp new-start)
elt (aref vector 1))
(deallocate-gcontext-state vector)
(when translate-width (setq width translate-width))))
(when result
(when (eql size 16)
(setq opcode +x-imagetext16+)
(setq elt (dpb elt (byte 8 8) (ldb (byte 8 8) elt))))
(with-buffer-request (display opcode :gc-force gcontext)
(drawable drawable)
(gcontext gcontext)
(data 1) ;; 1 character
(int16 x y)
(card8 (ldb (byte 8 0) elt))
(card8 (ldb (byte 8 8) elt)))
(values t width))))
(defun draw-image-glyphs (drawable gcontext x y sequence
&key (start 0) end translate width (size :default))
;; An initial font change is allowed from translate, but any subsequent font
;; change or horizontal motion will cause termination (because the protocol
;; doesn't support chaining). [Alternatively, font changes could be accepted
;; as long as they are accompanied with a width return value, or always
;; accept font changes and call text-width as required. However, horizontal
;; motion can't really be accepted, due to semantics.] First result is new
;; start, if end was not reached. Second result is overall width, if known.
(declare (type drawable drawable)
(type gcontext gcontext)
(type int16 x y)
(type array-index start)
(type (or null array-index) end)
(type sequence sequence)
(type (or null int32) width)
(type index-size size))
(declare (type (or null translation-function) translate)
(dynamic-extent translate))
(declare (clx-values (or null array-index) (or null int32)))
(setf end (index-min (index+ start 255) (or end (length sequence))))
(ecase size
((:default 8)
(draw-image-glyphs8 drawable gcontext x y sequence start end translate width))
(16
(draw-image-glyphs16 drawable gcontext x y sequence start end translate width))))
(defun draw-image-glyphs8 (drawable gcontext x y sequence start end translate width)
;; An initial font change is allowed from translate, but any subsequent font
;; change or horizontal motion will cause termination (because the protocol
;; doesn't support chaining). [Alternatively, font changes could be accepted
;; as long as they are accompanied with a width return value, or always
;; accept font changes and call text-width as required. However, horizontal
;; motion can't really be accepted, due to semantics.] First result is new
;; start, if end was not reached. Second result is overall width, if known.
(declare (type drawable drawable)
(type gcontext gcontext)
(type int16 x y)
(type array-index start)
(type sequence sequence)
(type (or null array-index) end)
(type (or null int32) width))
(declare (type (or null translation-function) translate)
(dynamic-extent translate))
(declare (clx-values (or null array-index) (or null int32)))
(do* ((display (gcontext-display gcontext))
(length (index- end start))
(font (gcontext-font gcontext nil))
(font-change nil)
(new-start) (translated-width) (chunk))
(nil) ;; forever
(declare (type display display)
(type array-index length)
(type (or null array-index) new-start chunk))
(when font-change
(setf (gcontext-font gcontext) font))
(block change-font
(with-buffer-request (display +x-imagetext8+ :gc-force gcontext :length length)
(drawable drawable)
(gcontext gcontext)
(int16 x y)
(progn
;; Don't let any flushes happen since we manually set the request
;; length when we're done.
(with-buffer-flush-inhibited (display)
;; Translate the sequence into the buffer
(multiple-value-setq (new-start font translated-width)
(funcall (or translate #'translate-default) sequence start end
font buffer-bbuf (index+ buffer-boffset 16)))
;; Number of glyphs translated
(setq chunk (index- new-start start))
;; Check for initial font change
(when (and (index-zerop chunk) (type? font 'font))
(setq font-change t) ;; Loop around changing font
(return-from change-font))
;; Quit when nothing translated
(when (index-zerop chunk)
(return-from draw-image-glyphs8 new-start))
;; Update buffer pointers
(data-put 1 chunk)
(let ((blen (lround (index+ 16 chunk))))
(length-put 2 (index-ash blen -2))
(setf (buffer-boffset display) (index+ buffer-boffset blen))))))
;; Normal exit
(return-from draw-image-glyphs8
(values (if (index= chunk length) nil new-start)
(or translated-width width))))))
(defun draw-image-glyphs16 (drawable gcontext x y sequence start end translate width)
;; An initial font change is allowed from translate, but any subsequent font
;; change or horizontal motion will cause termination (because the protocol
;; doesn't support chaining). [Alternatively, font changes could be accepted
;; as long as they are accompanied with a width return value, or always
;; accept font changes and call text-width as required. However, horizontal
;; motion can't really be accepted, due to semantics.] First result is new
;; start, if end was not reached. Second result is overall width, if known.
(declare (type drawable drawable)
(type gcontext gcontext)
(type int16 x y)
(type array-index start)
(type sequence sequence)
(type (or null array-index) end)
(type (or null int32) width))
(declare (type (or null translation-function) translate)
(dynamic-extent translate))
(declare (clx-values (or null array-index) (or null int32)))
(do* ((display (gcontext-display gcontext))
(length (index- end start))
(font (gcontext-font gcontext nil))
(font-change nil)
(new-start) (translated-width) (chunk)
(buffer (buffer-tbuf16 display)))
(nil) ;; forever
(declare (type display display)
(type array-index length)
(type (or null array-index) new-start chunk)
(type buffer-text16 buffer))
(when font-change
(setf (gcontext-font gcontext) font))
(block change-font
(with-buffer-request (display +x-imagetext16+ :gc-force gcontext :length length)
(drawable drawable)
(gcontext gcontext)
(int16 x y)
(progn
;; Don't let any flushes happen since we manually set the request
;; length when we're done.
(with-buffer-flush-inhibited (display)
;; Translate the sequence into the buffer
(multiple-value-setq (new-start font translated-width)
(funcall (or translate #'translate-default) sequence start end
font buffer 0))
;; Number of glyphs translated
(setq chunk (index- new-start start))
;; Check for initial font change
(when (and (index-zerop chunk) (type? font 'font))
(setq font-change t) ;; Loop around changing font
(return-from change-font))
;; Quit when nothing translated
(when (index-zerop chunk)
(return-from draw-image-glyphs16 new-start))
(write-sequence-char2b display (index+ buffer-boffset 16) buffer 0 chunk)
;; Update buffer pointers
(data-put 1 chunk)
(let ((blen (lround (index+ 16 (index-ash chunk 1)))))
(length-put 2 (index-ash blen -2))
(setf (buffer-boffset display) (index+ buffer-boffset blen))))))
;; Normal exit
(return-from draw-image-glyphs16
(values (if (index= chunk length) nil new-start)
(or translated-width width))))))
;;-----------------------------------------------------------------------------
(defun display-keycode-range (display)
(declare (type display display))
(declare (clx-values min max))
(values (display-min-keycode display)
(display-max-keycode display)))
;; Should this signal device-busy like the pointer-mapping setf, and return a
;; generalized-boolean instead (true for success)? Alternatively, should the
;; pointer-mapping setf be changed to set-pointer-mapping with a (member
;; :success :busy) result?
(defun set-modifier-mapping (display &key shift lock control mod1 mod2 mod3 mod4 mod5)
;; Setf ought to allow multiple values.
(declare (type display display)
(type sequence shift lock control mod1 mod2 mod3 mod4 mod5))
(declare (clx-values (member :success :busy :failed)))
(let* ((keycodes-per-modifier (index-max (length shift)
(length lock)
(length control)
(length mod1)
(length mod2)
(length mod3)
(length mod4)
(length mod5)))
(data (make-array (index* 8 keycodes-per-modifier)
:element-type 'card8
:initial-element 0)))
(replace data shift)
(replace data lock :start1 keycodes-per-modifier)
(replace data control :start1 (index* 2 keycodes-per-modifier))
(replace data mod1 :start1 (index* 3 keycodes-per-modifier))
(replace data mod2 :start1 (index* 4 keycodes-per-modifier))
(replace data mod3 :start1 (index* 5 keycodes-per-modifier))
(replace data mod4 :start1 (index* 6 keycodes-per-modifier))
(replace data mod5 :start1 (index* 7 keycodes-per-modifier))
(with-buffer-request-and-reply (display +x-setmodifiermapping+ 4 :sizes 8)
((data keycodes-per-modifier)
((sequence :format card8) data))
(values (member8-get 1 :success :busy :failed)))))
(defun modifier-mapping (display)
;; each value is a list of integers
(declare (type display display))
(declare (clx-values shift lock control mod1 mod2 mod3 mod4 mod5))
(let ((lists nil))
(with-buffer-request-and-reply (display +x-getmodifiermapping+ nil :sizes 8)
()
(do* ((keycodes-per-modifier (card8-get 1))
(advance-by +replysize+ keycodes-per-modifier)
(keys nil nil)
(i 0 (index+ i 1)))
((index= i 8))
(advance-buffer-offset advance-by)
(dotimes (j keycodes-per-modifier)
(let ((key (read-card8 j)))
(unless (zerop key)
(push key keys))))
(push (nreverse keys) lists)))
(values-list (nreverse lists))))
;; Either we will want lots of defconstants for well-known values, or perhaps
;; an integer-to-keyword translation function for well-known values.
(defun change-keyboard-mapping
(display keysyms &key (start 0) end (first-keycode start))
;; start/end give subrange of keysyms
;; first-keycode is the first-keycode to store at
(declare (type display display)
(type array-index start)
(type card8 first-keycode)
(type (or null array-index) end)
(type (array * (* *)) keysyms))
(let* ((keycode-end (or end (array-dimension keysyms 0)))
(keysyms-per-keycode (array-dimension keysyms 1))
(length (index- keycode-end start))
(size (index* length keysyms-per-keycode))
(request-length (index+ size 2)))
(declare (type array-index keycode-end keysyms-per-keycode length request-length))
(with-buffer-request (display +x-setkeyboardmapping+