Fixed fontdir handling.
[redact.git] / lib / redact / redact.rb
1 #--
2 # $Id: redact.rb 45 2005-06-08 18:02:12Z tilman $
3 #
4 # Copyright (c) 2005 Tilman Sauerbeck (tilman at code-monkey de)
5 #
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:
13 #
14 # The above copyright notice and this permission notice shall be
15 # included in all copies or substantial portions of the Software.
16 #
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.
24
25 require "eet"
26 require "imlib2"
27 require "redact/part"
28 require "redact/program"
29
30 class Object # :nodoc:
31         undef :id
32 end
33
34 class String
35         def to_embryo(collection)
36                 unless strip.length > 0
37                         raise(Redact::RedactError, "invalid embryo code")
38                 end
39
40                 s = strip.dup
41
42                 {"part" => collection.parts,
43                  "program" => collection.programs}.each do |entity, ary|
44                         s.gsub!(/#{entity.upcase}:\"(.*?)\"/) do |m|
45                                 found = ary.find { |(k, p)| p.name == $1 }
46                                 if found.nil?
47                                         raise(Redact::RedactError,
48                                               "#{entity} not found - #{$1}")
49                                 else
50                                         found.last.id
51                                 end
52                         end
53                 end
54
55                 s
56         end
57 end
58
59 module Redact
60         VERSION = "0.1.1"
61
62         class RedactError < StandardError; end
63
64         class Edje
65                 attr_reader :collections, :data, :collection_dir, :image_dir,
66                             :font_dir
67
68                 def initialize
69                         clear
70                 end
71
72                 def clear
73                         @font_dir = FontDirectory.new
74                         @image_dir = ImageDirectory.new
75                         @collection_dir = CollectionDirectory.new
76
77                         @collections = Hash.new do |h, k|
78                                 c = Collection.new(k, h.size)
79
80                                 @collection_dir << CollectionDirectoryEntry.new(c)
81                                 h[k] = c
82                         end
83
84                         @data = DataHash.new
85                 end
86
87                 def collection(name) # :yields: collection
88                         c = @collections[name]
89
90                         block_given? ? (yield c) : c
91                 end
92
93                 protected
94                 def to_eet_name
95                         "Edje_File"
96                 end
97
98                 def to_eet_properties
99                         {"compiler" => ["redact"],
100                          "version" => [2],
101                          "feature_ver" => [1],
102                          "font_dir" => [@font_dir, :sub],
103                          "image_dir" => [@image_dir, :sub],
104                          "collection_dir" => [@collection_dir, :sub],
105                          "data" => [@data]}
106                 end
107         end
108
109         class DataHash < Hash # :nodoc:
110                 def [](key)
111                         super.value
112                 end
113
114                 def []=(key, value)
115                         super(key, HashEntry.new(key, value))
116                 end
117         end
118
119         class HashEntry # :nodoc:
120                 attr_reader :key, :value
121
122                 def initialize(key, value)
123                         @key = key.to_str.dup.freeze
124                         @value = value.to_str.dup.freeze
125                 end
126
127                 protected
128                 def to_eet_name
129                         "Edje_Data"
130                 end
131         end
132
133         class FontDirectory < Array # :nodoc:
134                 protected
135                 def to_eet_name
136                         "Edje_Font_Directory"
137                 end
138
139                 def to_eet_properties
140                         {"entries" => [self]}
141                 end
142         end
143
144         class FontDirectoryEntry # :nodoc:
145                 attr_reader :filename
146
147                 def initialize(filename)
148                         @filename = filename.to_str.dup.freeze
149                 end
150
151                 protected
152                 def to_eet_name
153                         "Edje_Font_Directory_Entry"
154                 end
155
156                 def to_eet_properties
157                         {"entry" => [@filename]}
158                 end
159         end
160
161         class ImageDirectory < Array # :nodoc:
162                 def <<(entry)
163                         super
164
165                         entry.id = size - 1
166                 end
167
168                 protected
169                 def to_eet_name
170                         "Edje_Image_Directory"
171                 end
172
173                 def to_eet_properties
174                         {"entries" => [self]}
175                 end
176         end
177
178         class ImageDirectoryEntry # :nodoc:
179                 attr_reader :filename, :image, :id
180
181                 def initialize(filename)
182                         @filename = find_image(filename.to_str).freeze
183                         @image = Imlib2::Image.load(@filename)
184                         @id = -1
185                         @source_type = 1 # COMP
186                         @source_param = 1 # COMP
187                 end
188
189                 def id=(id)
190                         if id < 0
191                                 raise(ArgumentError, "invalid ID - #{id}")
192                         elsif @id != -1
193                                 raise(RedactError, "ID already set")
194                         else
195                                 @id = id
196                         end
197                 end
198
199                 protected
200                 def to_eet_name
201                         "Edje_Image_Directory_Entry"
202                 end
203
204                 def to_eet_properties
205                         {"entry" => [@filename],
206                          "source_type" => [@source_type],
207                          "source_param" => [@source_param],
208                          "id" => [@id]}
209                 end
210
211                 private
212                 def find_image(file)
213                         [".", OPTIONS.image_dir].each do |d|
214                                 f2 = File.join(d, file)
215                                 return f2 if File.file?(f2)
216                         end
217
218                         nil
219                 end
220         end
221
222         class CollectionDirectory < Array # :nodoc:
223                 protected
224                 def to_eet_name
225                         "Edje_Part_Collection_Directory"
226                 end
227
228                 def to_eet_properties
229                         {"entries" => [self]}
230                 end
231         end
232
233         class CollectionDirectoryEntry # :nodoc:
234                 def initialize(col)
235                         @name = col.name.to_str.dup.freeze
236                         @id = col.id
237                 end
238
239                 protected
240                 def to_eet_name
241                         "Edje_Part_Collection_Directory_Entry"
242                 end
243
244                 def to_eet_properties
245                         {"entry" => [@name],
246                          "id" => [@id]}
247                 end
248         end
249
250         class Collection
251                 attr_reader :name, :id, :data, :min, :max, :parts, :programs,
252                             :script
253
254                 def initialize(name, id)
255                         @name = name.to_str.dup.freeze
256                         @id = id
257
258                         @min = [0, 0]
259                         @max = [0, 0]
260                         @data = DataHash.new
261
262                         @parts = {}
263                         @programs = {}
264
265                         @script = nil
266                 end
267
268                 def script=(v)
269                         @script = v.to_str.dup
270                 end
271
272                 def part(name, type = :invalid) # :yields: part
273                         p = @parts[name]
274                         if p.nil?
275                                 klass = case type
276                                 when :rect
277                                         Part
278                                 when :swallow
279                                         SwallowPart
280                                 when :text
281                                         TextPart
282                                 when :image
283                                         ImagePart
284                                 else
285                                         raise(ArgumentError,
286                                               "invalid part type - #{type.to_s}")
287                                 end
288
289                                 p = klass.new(self, @parts.size, name)
290                                 @parts[name] = p
291                         end
292
293                         block_given? ? (yield p) : p
294                 end
295
296                 def program(name, type = :invalid) # :yields: program
297                         p = @programs[name]
298                         if p.nil?
299                                 klass = case type
300                                 when :base
301                                         Program
302                                 when :set_state
303                                         SetStateProgram
304                                 when :stop_program
305                                         StopProgramProgram
306                                 when :emit_signal
307                                         EmitSignalProgram
308                                 when :exec_script
309                                         ExecScriptProgram
310                                 else
311                                         raise(ArgumentError,
312                                               "invalid program type - #{type.to_s}")
313                                 end
314
315                                 p = klass.new(self, @programs.size, name)
316                                 @programs[name] = p
317                         end
318
319                         block_given? ? (yield p) : p
320                 end
321
322                 def set_size(w, h)
323                         set_min(w, h)
324                         set_max(w, h)
325                 end
326
327                 def set_min(w, h)
328                         @min = [w, h]
329                 end
330
331                 def set_max(w, h)
332                         @max = [w, h]
333                 end
334
335                 def has_embryo?(search_programs = true)
336                         if !@script.nil? && @script.to_str.strip.length > 0
337                                 true
338                         elsif search_programs
339                                 p = @programs.find do |(k, p)|
340                                         p.is_a?(ExecScriptProgram)
341                                 end
342
343                                 !p.nil?
344                         end
345                 end
346
347                 protected
348                 def to_eet_name
349                         "Edje_Part_Collection"
350                 end
351
352                 def to_eet_properties
353                         # sort parts and programs by id, since edje doesn't sort
354                         # them on load
355                         parts = @parts.to_a.map { |(key, value)| value }.sort
356                         programs = @programs.to_a.map { |(key, value)| value }.sort
357
358                         {"id" => [@id],
359                          "parts" => [parts],
360                          "programs" => [programs],
361                          "data" => [@data],
362                          "prop.min.w" => [@min[0]],
363                          "prop.min.h" => [@min[1]],
364                          "prop.max.w" => [@max[0]],
365                          "prop.max.h" => [@max[1]]}
366                 end
367         end
368
369         EDJE = Redact::Edje.new
370 end