X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=lib%2Fredact%2Fprogram.rb;h=a77536748aab2b036a9729dd6e33977d29acef77;hb=1c7f10346bf5a3639736d9179a492d01c2a4d127;hp=d6038d9646b82d17c75a499fa3e361d8d87884fa;hpb=ab3172e24532a15d27284567efde3a6aff5672c8;p=redact.git diff --git a/lib/redact/program.rb b/lib/redact/program.rb index d6038d9..a775367 100644 --- a/lib/redact/program.rb +++ b/lib/redact/program.rb @@ -1,5 +1,5 @@ #-- -# $Id: program.rb 23 2005-04-02 23:20:32Z tilman $ +# $Id: program.rb 28 2005-04-14 19:53:45Z tilman $ # # Copyright (c) 2005 Tilman Sauerbeck (tilman at code-monkey de) # @@ -35,8 +35,8 @@ module Redact include Comparable - attr_reader :collection, :id, :name, :after - attr_accessor :signal, :source, :in_from, :in_range + attr_reader :collection, :id, :name, :after, :signal, :source, + :in_from, :in_range def initialize(collection, id, name) @collection = collection @@ -56,6 +56,35 @@ module Redact @id <=> b.id end + def signal=(v) + @signal = v.to_str.dup + end + + def source=(v) + @source = v.to_str.dup + end + + def in_from=(v) + unless v.is_a?(Float) + raise(ArgumentError, + "wrong argument type #{v.class.name} " + + "(expected Float)") + end + + @in_from = v + end + + def in_range=(v) + unless v.is_a?(Float) + raise(ArgumentError, + "wrong argument type #{v.class.name} " + + "(expected Float)") + end + + @in_range = v + end + + protected def to_eet_name "Edje_Program" end @@ -73,8 +102,8 @@ module Redact end class SetStateProgram < Program - attr_reader :targets - attr_accessor :state, :value, :mode, :time + attr_reader :targets, :state, :value, :time + attr_accessor :mode def initialize(collection, id, name) super @@ -87,6 +116,31 @@ module Redact @targets = ProgramArgs.new(collection) end + def state=(v) + @state = v.to_str.dup + end + + def value=(v) + unless v.is_a?(Float) + raise(ArgumentError, + "wrong argument type #{v.class.name} " + + "(expected Float)") + end + + @value = v + end + + def time=(v) + unless v.is_a?(Float) + raise(ArgumentError, + "wrong argument type #{v.class.name} " + + "(expected Float)") + end + + @time = v + end + + protected def to_eet_properties mode = case @mode when :linear: 1 @@ -114,13 +168,14 @@ module Redact @targets = ProgramArgs.new(collection) end + protected def to_eet_properties super.merge!({"targets" => [@targets]}) end end class EmitSignalProgram < Program - attr_accessor :emission_signal, :emission_source + attr_reader :emission_signal, :emission_source def initialize(collection, id, name) super @@ -130,6 +185,15 @@ module Redact @emission_source = nil end + def emission_signal=(v) + @emission_signal = v.to_str.dup + end + + def emission_source=(v) + @emission_source = v.to_str.dup + end + + protected def to_eet_properties super.merge!( {"state" => [@emission_signal], @@ -138,7 +202,7 @@ module Redact end class ExecScriptProgram < Program - attr_accessor :script + attr_reader :script def initialize(collection, id, name) super @@ -146,6 +210,10 @@ module Redact @type = TYPE_EXEC_SCRIPT @script = nil end + + def script=(v) + @script = v.to_str.dup + end end class ProgramArgs < Array @@ -172,18 +240,21 @@ module Redact @id = v.id end + protected def to_eet_properties {"id" => [@id]} end end class ProgramAfter < ProgramArg + protected def to_eet_name "Edje_Program_After" end end class ProgramTarget < ProgramArg + protected def to_eet_name "Edje_Program_Target" end