-
Notifications
You must be signed in to change notification settings - Fork 1
/
Kage.rb
376 lines (375 loc) · 8.29 KB
/
Kage.rb
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
module Kage
class Stroke
def initialize(value)
if value.is_a? String then
@data = value.split(/:/)
@data.each_with_index {|val, index|
if @data[0].to_i == 99 and index == 7 then
@data[index] = val.dup
else
@data[index] = val.to_i
end
}
elsif value.is_a? Array then
value.each_with_index {|val, index|
if value[0].to_i == 99 and index == 7 then
raise TypeError, "Not a String instance" unless val.is_a? String
else
raise TypeError, "Not a Fixnum instance" unless val.is_a? Fixnum
end
}
@data = value.dup
if value[0].to_i == 99 then
@data[7] = value[7].dup
end
end
@data = (@data + ([0] * 11))[0..10]
end
def initialize_copy(stroke)
for index in 0..10
if @data[index] then
begin
@data[index] = stroke[index].dup
rescue TypeError
@data[index] = stroke[index]
end
end
end
end
def [](index)
@data[index]
end
def ref?
@data[0] == 99
end
def function?
@data[0] == 0 and @data[1] > 0
end
def null?
@data[0] == 0 and @data[1] == 0
end
def to_s
@data.join(":")
end
def to_a
@data.dup
end
def strokelength
case @data[0] % 100
when 1
return Math.hypot(@data[5] - @data[3], @data[6] - @data[4])
when 2, 3, 4
return Math.hypot(@data[5] - @data[3], @data[6] - @data[4]) +
Math.hypot(@data[7] - @data[5], @data[8] - @data[6])
when 6, 7
return Math.hypot(@data[5] - @data[3], @data[6] - @data[4]) +
Math.hypot(@data[7] - @data[5], @data[8] - @data[6]) +
Math.hypot(@data[9] - @data[7], @data[10] - @data[8])
else
return nil
end
end
def strokeType
@data[0]
end
def startType
@data[1]
end
def endType
@data[2]
end
def strokeType=(val)
raise TypeError, "Not a Fixnum instance" unless val.is_a? Fixnum
origType = @data[0]
case origType
when 0, 1
case val
when 0, 1
when 2, 3, 4
@data.insert(5, (@data[3] + @data[5]) / 2, (@data[4] + @data[6]) / 2)
when 6, 7
@data.insert(5, (@data[3] * 2 + @data[5]) / 3, (@data[4] * 2 + @data[6]) / 3, (@data[3] + @data[5] * 2) / 3, (@data[4] + @data[6] * 2) / 3)
else
raise ArgumentError, "Stroke type is invalid"
end
when 2, 3, 4
case val
when 0, 1
@data[5..8] = @data[7..8]
when 2, 3, 4
when 6, 7
@data[5..6] = [(@data[5] * 2 + @data[7]) / 3, (@data[6] * 2 + @data[8]) / 3, (@data[5] + @data[7] * 2) / 3, (@data[6] + @data[8] * 2) / 3]
else
raise ArgumentError, "Stroke type is invalid"
end
when 6, 7
case val
when 0, 1
@data[5..10] = @data[9..10]
when 2, 3, 4
@data[5..8] = [(@data[5] + @data[7]) / 2, (@data[6] + @data[8]) / 2]
when 6, 7
else
raise ArgumentError, "Stroke type is invalid"
end
else
raise ArgumentError, "Stroke type is invalid"
end
@data[0] = val
end
def startType=(val)
raise TypeError, "Not a Fixnum instance" unless val.is_a? Fixnum
@data[1] = val
end
def endType=(val)
raise TypeError, "Not a Fixnum instance" unless val.is_a? Fixnum
@data[2] = val
end
def startPoint
return nil if self.null?
case @data[0] % 100
when 0, 1, 2, 3, 4, 6, 7, 99
return @data[3..4].dup
else
return nil
end
end
def controlPoint1
case @data[0] % 100
when 2, 3, 4, 6, 7
return @data[5..6].dup
else
return nil
end
end
def controlPoint2
case @data[0] % 100
when 2, 3, 4
return @data[5..6].dup
when 6, 7
return @data[7..8].dup
else
return nil
end
end
def controlPoint
case @data[0] % 100
when 2, 3, 4
return @data[5..6].dup
when 6, 7
return [@data[5..6].dup, @data[7..8].dup]
else
return nil
end
end
def endPoint
return nil if self.null?
case @data[0] % 100
when 0, 1, 99
return @data[5..6]
when 2, 3, 4
return @data[7..8]
when 6, 7
return @data[9..10]
else
return nil
end
end
def startPoint=(a)
raise TypeError, "Not an Array of 2 Fixnum instances" unless a.is_a? Array and a.length == 2 and a.all?{|elem| elem.is_a? Fixnum}
@data[3..4] = a
end
def controlPoint1=(a)
raise TypeError, "Not an Array of 2 Fixnum instances" unless a.is_a? Array and a.length == 2 and a.all?{|elem| elem.is_a? Fixnum}
case @data[0] % 100
when 2, 3, 4, 6, 7
@data[5..6] = a
else
raise RuntimeError, "Stroke type is invalid"
end
end
def controlPoint2=(a)
raise TypeError, "Not an Array of 2 Fixnum instances" unless a.is_a? Array and a.length == 2 and a.all?{|elem| elem.is_a? Fixnum}
case @data[0] % 100
when 2, 3, 4
@data[5..6] = a
when 6, 7
@data[7..8] = a
else
raise RuntimeError, "Stroke type is invalid"
end
end
def endPoint=(a)
raise TypeError, "Not an Array of 2 Fixnum instances" unless a.is_a? Array and a.length == 2 and a.all?{|elem| elem.is_a? Fixnum}
case @data[0] % 100
when 0, 1, 99
if @data[0] == 0 and @data[1] == 0 then
raise RuntimeError, "Stroke type is invalid"
else
@data[5..6] = a
end
when 2, 3, 4
@data[7..8] = a
when 6, 7
@data[9..10] = a
else
raise RuntimeError, "Stroke type is invalid"
end
end
def startX
self.startPoint[0]
end
def startY
self.startPoint[1]
end
def control1X
self.controlPoint1[0]
end
def control1Y
self.controlPoint1[1]
end
def control2X
self.controlPoint2[0]
end
def control2Y
self.controlPoint2[1]
end
def endX
self.endPoint[0]
end
def endY
self.endPoint[1]
end
def startX=(val)
self.startPoint = [val, self.startY]
end
def startY=(val)
self.startPoint = [self.startX, val]
end
def control1X=(val)
self.controlPoint1 = [val, self.control1Y]
end
def control1Y=(val)
self.controlPoint1 = [self.control1X, val]
end
def control2X=(val)
self.controlPoint2 = [val, self.control2Y]
end
def control2Y=(val)
self.controlPoint2 = [self.control2X, val]
end
def endX=(val)
self.endPoint = [val, self.endY]
end
def endY=(val)
self.endPoint = [self.endX, val]
end
def link_to
if @data[0] == 99 then
return @data[7].dup
else
return nil
end
end
alias :at :[]
alias :inspect :to_s
end
class Glyph
include Enumerable
def initialize(str)
(@name, gStr) = str.split(/\t/)
@name.gsub!(/\\@/, '@')
@strokes = (gStr.split(/\$/)).map {|elem| Stroke.new(elem)}
if (@strokes.reject {|stroke| stroke.null?}).empty? then
@strokes = @strokes.take(1)
else
@strokes.reject! {|stroke| stroke.null?}
end
end
def initialize_copy(glyph)
for stroke, index in glyph.each_with_index
@strokes[index] = stroke.dup
end
end
def each
for stroke in @strokes
yield stroke
end
end
def [](index)
@strokes[index].dup
end
def []=(index, val)
@strokes[index] = checkType(val)
end
def insert(nth, *val)
for v in val.reverse
@strokes.insert(nth, checkType(v))
end
self
end
def push(nth, *val)
for v in val
@strokes.push(nth, checkType(v))
end
self
end
def +(other)
begin
@strokes + checkType(other)
rescue TypeError
@strokes + other.map{|val| checkType(other)}
end
end
def length
@strokes.length
end
def to_s
"#{@name}\t#{@strokes.map{|x| x.to_s}.join("$")}"
end
def alias?
@strokes.length == 1 and @strokes[0][0..6] == [99, 0, 0, 0, 0, 200, 200]
end
def ref_only?
@strokes.all? {|stroke| stroke[0] == 99}
end
def replace_with(arg)
if arg.is_a? Array then
tmpStrokes = []
for stroke in arg
tmpStrokes.push(stroke.is_a?(Stroke) ? stroke : Stroke.new(stroke))
end
@strokes = tmpStrokes
elsif arg.is_a? String then
@strokes = (arg.split(/\$/)).map {|elem| Stroke.new(elem)}
else
raise TypeError, "Invalid argument"
end
self
end
def unversioned_name
return @name.gsub(/@\d+$/, "")
end
attr_reader :name
attr_reader :strokes
alias :at :[]
alias :size :length
alias :inspect :to_s
private
def checkType(val)
if val.is_a? Stroke then
val
elsif val.is_a? Array then
Stroke.new(val)
else
raise TypeError, "Not a Kage::Stroke instance"
end
end
end
def self.dist(from, to)
for a in [from, to]
raise TypeError, "Not an Array of 2 Numeric instances" unless a.is_a? Array and a.length == 2 and a.all?{|elem| elem.is_a? Numeric}
end
Math.hypot(to[0] - from[0], to[1] - from[1])
end
end