Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/taproject.py
blob: 2eea89d2eb753f2dcb56b762040008af08d4ac0b (plain)
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
#Copyright (c) 2007-8, Playful Invention Company.
#Copyright (c) 2008-9, Walter Bender

#Permission is hereby granted, free of charge, to any person obtaining a copy
#of this software and associated documentation files (the "Software"), to deal
#in the Software without restriction, including without limitation the rights
#to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
#copies of the Software, and to permit persons to whom the Software is
#furnished to do so, subject to the following conditions:

#The above copyright notice and this permission notice shall be included in
#all copies or substantial portions of the Software.

#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
#IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
#FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
#AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
#LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
#OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
#THE SOFTWARE.

import pygtk
pygtk.require('2.0')
import gtk
import pickle
try:
    _old_Sugar_system = False
    import json
    json.dumps
    from json import load as jload
    from json import dump as jdump
except (ImportError, AttributeError):
    try:
        import simplejson as json
        from simplejson import load as jload
        from simplejson import dump as jdump
    except:
        _old_Sugar_system = True

from StringIO import StringIO
import os.path

from tacanvas import *
from talogo import stop_logo
from talogo import get_pixbuf_from_journal
try:
    from sugar.datastore import datastore
except:
    pass
import block
import sprites
from constants import *
from gettext import gettext as _

nolabel = ['audiooff', 'descriptionoff', 'journal']
shape_dict = {'journal':'texton', \
              'descriptionoff':'decson', \
              'audiooff':'audioon'}

def new_project(tw):
    stop_logo(tw)
    for b in tw._just_blocks():
        b.spr.hide()
    tw.turtle.canvas.set_layer(CANVAS_LAYER)
    clearscreen(tw.turtle)
    tw.save_file_name = None

def load_file(tw, create_new_project=True):
    fname = _get_load_name(tw)
    if fname==None:
        return
    if fname[-3:]=='.ta':
        fname=fname[0:-3]
    load_files(tw,fname+'.ta', create_new_project)
    if create_new_project is True:
        tw.save_file_name = os.path.basename(fname)

#
# We try to maintain read-compatibility with all versions of Turtle Art.
# Try pickle first; then two different versions of json.
#
def load_files(tw, ta_file, create_new_project=True):
    # Just open the .ta file, ignoring any .png file that might be present.
    f = open(ta_file, "r")
    try:
        data = pickle.load(f)
    except:
        # Rewind necessary because of failed pickle.load attempt
        f.seek(0)
        text = f.read()
        data = _json_load(text)
    f.close()
    if create_new_project is True:
        new_project(tw)
    read_data(tw, data)

def _json_load(text):
    if _old_Sugar_system is True:
        listdata = json.read(text)
    else:
        io = StringIO(text)
        listdata = jload(io)
    print "load files: %s" % (listdata)
    # json converts tuples to lists, so we need to convert back,
    return _tuplify(listdata) 

def _get_load_name(tw):
    dialog = gtk.FileChooserDialog("Load...", None,
                                   gtk.FILE_CHOOSER_ACTION_OPEN,
                                   (gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL,
                                    gtk.STOCK_OPEN, gtk.RESPONSE_OK))
    dialog.set_default_response(gtk.RESPONSE_OK)
    return _do_dialog(tw, dialog)

# Unpack serialized data sent across a share.
def load_string(tw, text):
    data = _json_load(text)
    new_project(tw)
    read_data(tw, data)

# Unpack serialized data from the clipboard.
def clone_stack(tw, text):
    data = _json_load(text)
    read_data(tw, data)

def _tuplify(t):
    if type(t) is not list:
        return t
    return tuple(map(_tuplify, t))

def read_data(tw, data):
    print "data is %d elements long" % (len(data))
    # First we create the blocks
    blocks = []
    t = 0
    for b in data:
        print b
        if b[1] == 'turtle':
            load_turtle(tw, b)
            print "we founf a turtle"
            t = 1
        else:
            blk = load_block(tw, b); blocks.append(blk)
    print "we have %d blocks and %d turtles" % (len(blocks), t)
    # Then we make the connections
    for i in range(len(blocks)):
        print "connections for %s are:" % (blocks[i].name)
        cons=[]
        for c in data[i][4]:
            if c is None:
                cons.append(None)
                print "   None"
            else:
                cons.append(blocks[c])
                print "   %s" % (blocks[c].name)
        blocks[i].connections = cons
    # Then we need to adjust the x,y positions, as block sizes may have changed
    for b in blocks:
        (sx, sy) = b.spr.get_xy()
        for i, c in enumerate(b.connections):
            if c is not None:
                bdock = b.docks[i]
                for j in range(len(c.docks)):
                    if c.connections[j] == b:
                        cdock = c.docks[j]
                nx, ny = sx+bdock[2]-cdock[2], sy+bdock[3]-cdock[3]
                c.spr.move((nx, ny))

def load_block(tw, b):
    # TODO: optionally read blocks without x, y
    # A block is saved as: (i, (btype, label), x, y, (c0,... cn))
    media = None
    btype, label = b[1], None
    if type(btype) == type((1,2)): 
        btype, label = btype
    if label is None:
        labels = []
    else:
        labels = [label]

    print labels
    """
    # TODO: handle media 
    if btype == 'journal' or btype == 'audiooff' or btype == 'descriptionoff':
        media = label
        label = None
    """
    blk = block.Block(tw.block_list, tw.sprite_list, 
                      btype, b[2]+tw.turtle.cx,
                      b[3]+tw.turtle.cy, 'block', labels)
    """
    if media is not None and media not in nolabel:
        try:
            dsobject = datastore.get(media)
            spr.ds_id = dsobject.object_id
            setimage(spr, tw.media_shapes[shape_dict[spr.proto.name]])
            if spr.proto.name == 'journal':
                pixbuf = get_pixbuf_from_journal(dsobject,
                                                 spr.width,spr.height)
                if pixbuf is not None:
                    setimage(spr, pixbuf)
            dsobject.destroy()
        except:
            if hasattr(spr,"ds_id"):
                print "couldn't open dsobject (" + str(spr.ds_id) + ")"
    """
    blk.spr.set_layer(BLOCK_LAYER)
    return blk

def load_turtle(tw, b):
    id, name, xcor, ycor, heading, color, shade, pensize = b
    setxy(tw.turtle, xcor, ycor)
    seth(tw.turtle, heading)
    setcolor(tw.turtle, color)
    setshade(tw.turtle, shade)
    setpensize(tw.turtle, pensize)

# start a new project with a start brick
def load_start(tw):
    clone_stack(tw,"%s%s%s" % ("[[0,[\"start\",\"", _("start"),
                               "\"],250,250,[null,null]]]"))

#
# Everything below is suspect
# mix and match of old and new
# procced with caution
#
def save_file(tw):
    if tw.save_folder is not None:
        tw.load_save_folder = tw.save_folder
    fname = _get_save_name(tw)
    if fname is None:
        return
    if fname[-3:]=='.ta':
        fname=fname[0:-3]
    save_data(tw,fname+".ta")
    tw.save_file_name = os.path.basename(fname)

def _get_save_name(tw):
    dialog = gtk.FileChooserDialog("Save...", None,
                                   gtk.FILE_CHOOSER_ACTION_SAVE,
                                   (gtk.STOCK_CANCEL,
                                    gtk.RESPONSE_CANCEL,
                                    gtk.STOCK_SAVE,
                                    gtk.RESPONSE_OK))
    dialog.set_default_response(gtk.RESPONSE_OK)
    if tw.save_file_name is not None:
        dialog.set_current_name(tw.save_file_name+'.ta')
    return _do_dialog(tw,dialog)

def save_data(tw, fname):
    f = file(fname, "w")
    data = _assemble_data_to_save(tw)
    f.write(_json_dump(data))
    f.close()

def _json_dump(data):
    if _old_Sugar_system is True:
        return json.write(data)
    else:
        io = StringIO()
        jdump(data,io)
        return io.getvalue()

# Used to send data across a shared session
def save_string(tw, save_turtle=True):
    data = _assemble_data_to_save(tw, save_turtle)
    return _json_dump(data)

def _assemble_data_to_save(tw, save_turtle=True):
    data = []
    for i, b in enumerate(tw._just_blocks()):
         b.id = i
    for b in tw._just_blocks():
        print "saving: %d %s %s" % (b.id, b.name, b.spr.labels[0])
        name = (b.name, b.spr.labels[0])
        """
        if tw.defdict.has_key(name) or name in nolabel:
            if hasattr(b,"ds_id") and b.ds_id != None:
                name=(name, str(b.ds_id))
            else:
                name=(name, b.spr.labels[0])
        """
        if hasattr(b, 'connections'):
            connections = [get_id(c) for c in b.connections]
        else:
            connections = None
        print connections
        (sx, sy) = b.spr.get_xy()
        data.append((b.id, name, sx-tw.turtle.cx, sy-tw.turtle.cy, connections))
    if save_turtle is True:
        data.append((-1,'turtle',
                    tw.turtle.xcor,tw.turtle.ycor,tw.turtle.heading,
                    tw.turtle.color,tw.turtle.shade,tw.turtle.pensize))
    return data

# Serialize a stack to save to the clipboard
# TODO: check to make sure just the stack and not the project is saved
def serialize_stack(tw):
    data = _assemble_data_to_save(tw, False)
    if data == []:
        return None
    return _json_dump(data)

def get_id(c):
    if c is None:
        return None
    return c.id

def _do_dialog(tw,dialog):
    result = None
    filter = gtk.FileFilter()
    filter.add_pattern("*.ta")
    filter.set_name("Turtle Art")
    dialog.add_filter(filter)
    dialog.set_current_folder(tw.load_save_folder)
    response = dialog.run()
    if response == gtk.RESPONSE_OK:
        result = dialog.get_filename()
        tw.load_save_folder = dialog.get_current_folder()
    dialog.destroy()
    return result