OSDN Git Service

73f2e0eb18264d3733fc845f52f658431765c837
[bbk/bchanf.git] / src / control / texteditor_characterstate.c
1 /*
2  * texteditor_characterstate.h
3  *
4  * Copyright (c) 2013 project bchan
5  *
6  * This software is provided 'as-is', without any express or implied
7  * warranty. In no event will the authors be held liable for any damages
8  * arising from the use of this software.
9  *
10  * Permission is granted to anyone to use this software for any purpose,
11  * including commercial applications, and to alter it and redistribute it
12  * freely, subject to the following restrictions:
13  *
14  * 1. The origin of this software must not be misrepresented; you must not
15  *    claim that you wrote the original software. If you use this software
16  *    in a product, an acknowledgment in the product documentation would be
17  *    appreciated but is not required.
18  *
19  * 2. Altered source versions must be plainly marked as such, and must not be
20  *    misrepresented as being the original software.
21  *
22  * 3. This notice may not be removed or altered from any source
23  *    distribution.
24  *
25  */
26
27 #include        "texteditor_characterstate.h"
28
29 #include        <bstdio.h>
30
31 #include        <tad/tadfragment.h>
32 #include        <tad/tadlangcode.h>
33
34 #ifdef BCHAN_CONFIG_DEBUG
35 # define DP(arg) printf arg
36 # define DP_ER(msg, err) printf("%s (%d/%x)\n", msg, err>>16, err)
37 #else
38 # define DP(arg) /**/
39 # define DP_ER(msg, err) /**/
40 #endif
41
42 EXPORT W texteditor_charactorstate_input(texteditor_characterstate_t *state, tadfragment_cursor_segment *segment)
43 {
44         TC *str;
45         W len, err;
46         UB segid, subid;
47
48         if (segment->type == TADFRAGMENT_CURSOR_SEGMENTTYPE_VARIABLE) {
49                 if (segment->len != 10) {
50                         return 0;
51                 }
52                 segid = *(TC*)segment->p & 0xFF;
53                 if (segid != TS_TFONT) {
54                         return 0;
55                 }
56                 subid = *(TC*)(segment->p + 4) >> 8;
57                 if (subid != 3) {
58                         return 0;
59                 }
60                 state->w_ratio = *(RATIO*)(segment->p + 8);
61         } else if (segment->type == TADFRAGMENT_CURSOR_SEGMENTTYPE_LANGCODE) {
62                 str = (TC*)segment->p;
63                 len = segment->len / sizeof(TC);
64                 err = TCtotadlangcode(str, len, &state->lang);
65                 if (err < 0) {
66                         return err;
67                 }
68         }
69         return 0;
70 }
71
72 EXPORT Bool texteditor_characterstate_ishankaku(texteditor_characterstate_t *state)
73 {
74         W ratio_a, ratio_b;
75
76         ratio_a = state->w_ratio >> 8;
77         ratio_b = state->w_ratio & 0xFF;
78         if ((ratio_a * 2 > ratio_b)||(ratio_b == 0)) {
79                 return False;
80         } else {
81                 return True;
82         }
83 }
84
85 EXPORT W texteditor_characterstate_getlang(texteditor_characterstate_t *state, TC *str, W len)
86 {
87         return tadlangcodetoTC(&state->lang, str, len);
88 }
89
90 EXPORT VOID texteditor_characterstate_getlangcode(texteditor_characterstate_t *state, tadlangcode *lang)
91 {
92         *lang = state->lang;
93 }
94
95 EXPORT Bool texteditor_characterstate_islang(texteditor_characterstate_t *state, TC *str, W len)
96 {
97         return tadlangcodecmpTC(str, len, &state->lang);
98 }
99
100 EXPORT VOID texteditor_characterstate_initialize(texteditor_characterstate_t *state)
101 {
102         state->w_ratio = 0x0101;
103         state->lang.iter = 0;
104         state->lang.code = 0x21; // system script
105 }
106
107 EXPORT VOID texteditor_characterstate_finalize(texteditor_characterstate_t *state)
108 {
109 }