2 # $Id: part.rb 49 2005-06-09 17:21:05Z tilman $
4 # Copyright (c) 2005 Tilman Sauerbeck (tilman at code-monkey de)
6 # Permission is hereby granted, free of charge, to any person obtaining
7 # a copy of this software and associated documentation files (the
8 # "Software"), to deal in the Software without restriction, including
9 # without limitation the rights to use, copy, modify, merge, publish,
10 # distribute, sublicense, and/or sell copies of the Software, and to
11 # permit persons to whom the Software is furnished to do so, subject to
12 # the following conditions:
14 # The above copyright notice and this permission notice shall be
15 # included in all copies or substantial portions of the Software.
17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
34 attr_reader :collection, :id, :name, :dragable, :clip,
35 :mouse_events, :repeat_events
37 def initialize(collection, id, name)
38 @collection = collection
41 @name = name.to_str.dup.freeze
42 @type = TYPE_RECTANGLE
44 @repeat_events = false
46 @dragable = Dragable.new(self)
48 @descriptions = Hash.new do |h, k|
49 desc, value = k.split("\0")
52 h[k] = description_class.new(desc, value)
60 def mouse_events=(val)
61 @mouse_events = (val == true)
64 def repeat_events=(val)
65 @repeat_events = (val == true)
70 raise(ArgumentError, "cannot clip part to itself")
71 elsif !part.nil? && part.collection != @collection
72 raise(ArgumentError, "items not in the same collection")
78 def description(name = "default", value = 0.0) # :yields: desc
79 d = @descriptions[desc_key(name, value)]
81 block_given? ? (yield d) : d
94 other_desc = @descriptions.dup
95 other_desc.delete(desc_key("default", 0.0))
97 confine_id = @dragable.confine.nil? ?
98 -1 : @dragable.confine.id
102 "type" => [@type, :char],
103 "effect" => [0, :char],
104 "mouse_events" => [@mouse_events],
105 "repeat_events" => [@repeat_events],
106 "clip_to_id" => [@clip.nil? ? -1 : @clip.id],
107 "default_desc" => [description("default", 0.0)],
108 "other_desc" => [other_desc],
109 "dragable.x" => [@dragable.enabled[0], :char],
110 "dragable.step_x" => [@dragable.step[0]],
111 "dragable.count_x" => [@dragable.count[0]],
112 "dragable.y" => [@dragable.enabled[1], :char],
113 "dragable.step_y" => [@dragable.step[1]],
114 "dragable.count_y" => [@dragable.count[1]],
115 "dragable.counfine_id" => [confine_id]} # not a typo!
119 def desc_key(name, value)
120 name + "\0" + value.to_s
124 class SwallowPart < Part
125 def initialize(collection, id, name)
132 class TextPart < Part
133 attr_accessor :effect
135 def initialize(collection, id, name)
143 def description_class
147 def to_eet_properties
148 effect = case @effect
152 when :soft_outline: 3
155 when :outline_shadow: 6
156 when :outline_soft_shadow: 7
158 raise(RedactError, "invalid effect value - #{@effect}")
161 super.merge!({"effect" => [effect, :char]})
165 class ImagePart < Part
166 def initialize(collection, id, name)
173 def description_class
179 attr_reader :enabled, :step, :count, :confine
184 @enabled = [false, false]
192 raise(ArgumentError, "cannot confine part to itself")
193 elsif !part.nil? && part.collection != @part.collection
194 raise(ArgumentError, "items not in the same collection")
202 attr_reader :rel, :to_id, :offset
204 def initialize(rel, offset)
207 @offset = [offset, offset]
222 def set_to(part_x, part_y = part_x)
223 @to_id = [part_x.nil? ? -1 : part_x.id,
224 part_y.nil? ? -1 : part_y.id]
229 attr_reader :rel, :aspect, :step, :visible, :color_class
230 attr_accessor :aspect_preference
232 def initialize(name = "default", value = 0.0)
233 @name = name.to_str.dup.freeze
234 @value = value.freeze
241 @aspect_preference = :none
242 @rel = [Relation.new(0.0, 0), Relation.new(1.0, -1)]
243 @color = [].fill(255, 0..3)
248 @visible = (v == true)
252 @color_class = v.to_str.dup
255 def set_step(x = 0, y = 0)
259 def set_aspect(x = 0.0, y = 0.0)
263 def set_align(x = 0.5, y = 0.5)
281 @color = parse_hex_color(c)
285 def parse_hex_color(c)
286 md = c.match(/^#?(([[:xdigit:]]{2}){1,4})$/)
288 raise(ArgumentError, "Argument is not a hex string")
291 pairs = md.captures.shift.split(/(..)/).delete_if do |item|
295 pairs.push("00") while pairs.length < 3
296 pairs.push("ff") if pairs.length == 3
298 pairs.map { |p| p.hex }
302 "Edje_Part_Description"
305 def to_eet_properties
306 asp_pref = case @aspect_preference
312 raise(RedactError, "invalid aspect preference value - " +
313 @aspect_preference.to_s)
316 {"state.name" => [@name],
317 "state.value" => [@value, :double],
318 "visible" => [@visible],
319 "align.x" => [@align[0], :double],
320 "align.y" => [@align[1], :double],
321 "min.w" => [@min[0]],
322 "min.h" => [@min[1]],
323 "max.w" => [@max[0]],
324 "max.h" => [@max[1]],
325 "step.x" => [@step[0]],
326 "step.y" => [@step[1]],
327 "aspect.min" => [@aspect[0], :double],
328 "aspect.max" => [@aspect[1], :double],
329 "aspect.prefer" => [asp_pref, :char],
330 "rel1.relative_x" => [@rel[0].rel[0], :double],
331 "rel1.relative_y" => [@rel[0].rel[1], :double],
332 "rel1.offset_x" => [@rel[0].offset[0]],
333 "rel1.offset_y" => [@rel[0].offset[1]],
334 "rel1.id_x" => [@rel[0].to_id[0]],
335 "rel1.id_y" => [@rel[0].to_id[1]],
336 "rel2.relative_x" => [@rel[1].rel[0], :double],
337 "rel2.relative_y" => [@rel[1].rel[1], :double],
338 "rel2.offset_x" => [@rel[1].offset[0]],
339 "rel2.offset_y" => [@rel[1].offset[1]],
340 "rel2.id_x" => [@rel[1].to_id[0]],
341 "rel2.id_y" => [@rel[1].to_id[1]],
342 "color_class" => [@color_class],
343 "color.r" => [@color[0], :char],
344 "color.g" => [@color[1], :char],
345 "color.b" => [@color[2], :char],
346 "color.a" => [@color[3], :char],
350 "image.tween_list" => [nil],
355 "border.no_fill" => [false],
356 "fill.smooth" => [true],
357 "fill.pos_rel_x" => [0.0, :double],
358 "fill.pos_abs_x" => [0],
359 "fill.rel_x" => [1.0, :double],
361 "fill.pos_rel_y" => [0.0, :double],
362 "fill.pos_abs_y" => [0],
363 "fill.rel_y" => [1.0, :double],
367 "color2.r" => [0, :char],
368 "color2.g" => [0, :char],
369 "color2.b" => [0, :char],
370 "color2.a" => [255, :char],
371 "color3.r" => [0, :char],
372 "color3.g" => [0, :char],
373 "color3.b" => [0, :char],
374 "color3.a" => [128, :char],
376 "text.text_class" => [""],
379 "text.fit_x" => [false],
380 "text.fit_y" => [false],
383 "text.align.x" => [0.0, :double],
384 "text.align.y" => [0.0, :double],
385 "text.id_source" => [-1],
386 "text.id_text_source" => [-1]}
391 def initialize(image)
403 im2 = find_image(im.to_str.strip)
404 raise(RedactError, "cannot find image - #{im}") if im2.nil?
406 image = EDJE.image_dir.find { |e| e.filename == im2 }
408 image = ImageDirectoryEntry.new(im, im2)
409 EDJE.image_dir << image
412 super(Tween.new(image))
417 [".", OPTIONS.image_dir].each do |d|
418 f2 = File.join(d, file)
419 return Pathname.new(f2).cleanpath.to_s if File.file?(f2)
427 class ImageDescription < Description
428 attr_reader :image, :auto_rel, :tweens, :border_fill_middle
430 def initialize(name = "default", value = 0.0)
435 @border = [0, 0, 0, 0]
436 @border_fill_middle = true
441 def border_fill_middle=(var)
442 @border_fill_middle = (var == true)
446 im2 = find_image(im.to_str.strip)
447 raise(RedactError, "cannot find image - #{im}") if im2.nil?
449 return if !@image.nil? && im2 == @image.filename
451 @image = EDJE.image_dir.find { |e| e.filename == im2 }
453 @image = ImageDirectoryEntry.new(im, im2)
454 EDJE.image_dir << @image
457 self.auto_rel = @auto_rel
463 if @auto_rel && !@image.nil?
466 @rel[1].set_rel(0.0, 0.0)
467 @rel[1].set_offset(off[0] + @image.image.width - 1,
468 off[1] + @image.image.height - 1)
472 def set_border(l = 0, r = 0, t = 0, b = 0)
473 @border = [r, r, t, b]
477 def to_eet_properties
479 {"image.id" => [@image.nil? ? -1 : @image.id],
480 "image.tween_list" => [@tweens],
481 "border.l" => [@border[0]],
482 "border.r" => [@border[1]],
483 "border.t" => [@border[2]],
484 "border.b" => [@border[3]],
485 "border.no_fill" => [!@border_fill_middle],
486 "fill.smooth" => [@fill_smooth],
487 "fill.pos_rel_x" => [0.0, :double],
488 "fill.pos_abs_x" => [0],
489 "fill.rel_x" => [1.0, :double],
491 "fill.pos_rel_y" => [0.0, :double],
492 "fill.pos_abs_y" => [0],
493 "fill.rel_y" => [1.0, :double],
494 "fill.abs_y" => [0]})
499 [".", OPTIONS.image_dir].each do |d|
500 f2 = File.join(d, file)
501 return Pathname.new(f2).cleanpath.to_s if File.file?(f2)
508 class TextDescription < Description
509 attr_reader :font, :text, :font_size, :text_class
511 def initialize(name = "default", value = 0.0)
514 @outline_color = [0, 0, 0, 255]
515 @shadow_color = [0, 0, 0, 128]
520 @fit = [false, false]
521 @text_min = [false, false]
522 @text_align = [0.5, 0.5]
524 @text_id_text_source = -1
532 @font_size = v.to_int
536 @text_class = v.to_str.dup
539 def set_fit(x = false, y = false)
543 def set_text_min(x = false, y = false)
547 def set_text_align(x = 0.5, y = 0.5)
553 md = f.match(/.*\.ttf$/)
556 raise(RedactError, "cannot find font - #{f}") if f2.nil?
558 found = EDJE.font_dir.find { |font| font.filename == f2 }
560 EDJE.font_dir << FontDirectoryEntry.new(f, f2)
561 @font = EDJE.font_dir.last.alias
570 def outline_color=(c)
571 @outline_color = parse_hex_color(c)
575 @shadow_color = parse_hex_color(c)
579 def to_eet_properties
581 {"color2.r" => [@outline_color[0], :char],
582 "color2.g" => [@outline_color[1], :char],
583 "color2.b" => [@outline_color[2], :char],
584 "color2.a" => [@outline_color[3], :char],
585 "color3.r" => [@shadow_color[0], :char],
586 "color3.g" => [@shadow_color[1], :char],
587 "color3.b" => [@shadow_color[2], :char],
588 "color3.a" => [@shadow_color[3], :char],
589 "text.text" => [@text],
590 "text.text_class" => [@text_class],
591 "text.font" => [@font],
592 "text.size" => [@font_size],
593 "text.fit_x" => [@fit[0]],
594 "text.fit_y" => [@fit[1]],
595 "text.min_x" => [@text_min[0]],
596 "text.min_y" => [@text_min[1]],
597 "text.align.x" => [@text_align[0], :double],
598 "text.align.y" => [@text_align[1], :double],
599 "text.id_source" => [@text_id_source],
600 "text.id_text_source" => [@text_id_text_source]})
605 [".", OPTIONS.font_dir].each do |d|
606 f2 = File.join(d, file)
607 return Pathname.new(f2).cleanpath.to_s if File.file?(f2)