OSDN Git Service

52d9c2c2b579fb79195a621e0bf5aadad4dae8c5
[bbk/bchanf.git] / src / control / texteditor_characterstate.c
1 /*
2  * texteditor_characterstate.c
3  *
4  * Copyright (c) 2013-2014 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/tadsegment.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, tadsegment *segment)
43 {
44         UB segid, subid;
45
46         if (segment->type == TADSEGMENT_TYPE_VARIABLE) {
47                 if (segment->value.variable.rawlen != 10) {
48                         return 0;
49                 }
50                 segid = *(TC*)segment->value.variable.raw & 0xFF;
51                 if (segid != TS_TFONT) {
52                         return 0;
53                 }
54                 subid = *(TC*)(segment->value.variable.raw + 4) >> 8;
55                 if (subid != 3) {
56                         return 0;
57                 }
58                 state->w_ratio = *(RATIO*)(segment->value.variable.raw + 8);
59         } else if (segment->type == TADSEGMENT_TYPE_LANGCODE) {
60                 memcpy(&state->lang, &segment->value.lang, sizeof(tadlangcode));
61         }
62         return 0;
63 }
64
65 EXPORT Bool texteditor_characterstate_ishankaku(texteditor_characterstate_t *state)
66 {
67         W ratio_a, ratio_b;
68
69         ratio_a = state->w_ratio >> 8;
70         ratio_b = state->w_ratio & 0xFF;
71         if ((ratio_a * 2 > ratio_b)||(ratio_b == 0)) {
72                 return False;
73         } else {
74                 return True;
75         }
76 }
77
78 EXPORT W texteditor_characterstate_getlang(texteditor_characterstate_t *state, TC *str, W len)
79 {
80         return tadlangcodetoTC(&state->lang, str, len);
81 }
82
83 EXPORT VOID texteditor_characterstate_getlangcode(texteditor_characterstate_t *state, tadlangcode *lang)
84 {
85         *lang = state->lang;
86 }
87
88 EXPORT Bool texteditor_characterstate_islang(texteditor_characterstate_t *state, TC *str, W len)
89 {
90         return tadlangcodecmpTC(str, len, &state->lang);
91 }
92
93 EXPORT VOID texteditor_characterstate_initialize(texteditor_characterstate_t *state)
94 {
95         state->w_ratio = 0x0101;
96         state->lang.iter = 0;
97         state->lang.code = 0x21; // system script
98 }
99
100 EXPORT VOID texteditor_characterstate_finalize(texteditor_characterstate_t *state)
101 {
102 }