Mercurial > code > home > repos > light9
annotate light8/stage.py @ 37:115636cca107
subeditor begins to work - stage makes the right calls to subeditor now
author | drewp |
---|---|
date | Sun, 07 Jul 2002 12:16:03 +0000 |
parents | 43aa1ee8b3a9 |
children | 6540879e336e |
rev | line source |
---|---|
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
1 from Tkinter import * |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
2 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
3 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
4 def printevent(ev): |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
5 for k in dir(ev): |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
6 if not k.startswith('__'): |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
7 print k,getattr(ev,k) |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
8 print "" |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
9 |
0 | 10 |
14 | 11 textstyle={'font':'arial 7','fill':'white'} |
12 | |
13 | |
0 | 14 class Stage(Canvas): |
15 | |
16 """a fancy widget that shows light locations (and optionally their | |
17 aim locations on an image of the stage. you can select or | |
18 multiselect lights and drag them up or down to change their | |
19 brightness. | |
20 | |
21 ctrl-a is select all, | |
22 ctrl-shift-a or clicking on no light deselects all, | |
23 re-clicking a light with shift key down toggles whether it's in the selection. | |
24 ctrl-drag-rectangle deselects the lights in the rectangle, | |
25 shift-drag-rectangle selects the lights in the rectangle, | |
26 drag-rectangle selects only the lights in the rectangle. | |
27 | |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
28 a light can be selected on its location point, its aim point |
0 | 29 (which may or may not be present), or its name. |
30 | |
31 lights should be able to be interactively 'locked', which blocks | |
32 them from being selected. | |
33 | |
17 | 34 API: |
35 __init__(parent,**kw) | |
36 put pass any canvas options you want | |
37 | |
38 setimage(stageimage) | |
39 sets image to given filename (ppm, gif, etc) and resizes the canvas to the image size | |
40 | |
41 addlight(name, location, aim=None) | |
42 location and aim are pixel coord tuples. name will be passed back to you in the callback (see below) | |
43 | |
44 setlightchangecb(cb) | |
45 give a function which will be called like this: cb(list_of_light_names, delta) | |
46 | |
47 | |
0 | 48 """ |
49 def __init__(self,parent,**kw): | |
50 Canvas.__init__(self,parent,**kw) | |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
51 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
52 self.bind("<ButtonPress-1>", self.leftpress) |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
53 self.bind("<B1-Motion>", self.leftmotion) |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
54 self.bind("<ButtonRelease-1>", self.leftrelease) |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
55 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
56 self.halo=11 # search radius for clicked items |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
57 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
58 self.lmbstate=None # as you perform with LMB, this goes from None to 'pressed','rectangle','levelchange' |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
59 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
60 self.alllights=[] |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
61 self.selectedlights=[] |
7 | 62 self.alllighttags={} # tag: name lookup |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
63 |
37
115636cca107
subeditor begins to work - stage makes the right calls to subeditor now
drewp
parents:
17
diff
changeset
|
64 self.subeditor=None |
7 | 65 |
66 def setimage(self,stageimage): | |
67 img = Image('photo',file=stageimage) | |
68 self.img=img # can't lose this! | |
69 print img.width() | |
70 self.create_image(0,0,anchor='nw',image=img) | |
71 self.config(width=img.width(),height=img.height()) | |
37
115636cca107
subeditor begins to work - stage makes the right calls to subeditor now
drewp
parents:
17
diff
changeset
|
72 |
115636cca107
subeditor begins to work - stage makes the right calls to subeditor now
drewp
parents:
17
diff
changeset
|
73 def setsubediting(self,subeditor): |
115636cca107
subeditor begins to work - stage makes the right calls to subeditor now
drewp
parents:
17
diff
changeset
|
74 self.subeditor = subeditor |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
75 # |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
76 # selection management |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
77 # |
7 | 78 def updateselectionboxes(self): |
79 "make selection boxes that match self.selectedlights" | |
80 self.delete("selectbox") | |
81 for l in self.selectedlights: | |
82 for c in self.getlightbboxes(l): | |
83 self.create_rectangle(c[0]-2,c[1]-2,c[2]+2,c[3]+2,outline='red',tag="selectbox") | |
84 | |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
85 def clearselection(self,dyn=0): |
7 | 86 self.selectedlights=[] |
87 self.updateselectionboxes() | |
88 | |
89 def markfordynselection(self): | |
90 """call this before calls to replacedynselection""" | |
91 self.origselection = self.selectedlights | |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
92 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
93 def replacedynselection(self,newlightnames): |
7 | 94 """as a dynamic selection changes, keep calling this function with the |
95 names of the lights in the dynamic selection. the original selection (at the time | |
96 of markfordynselection) will be shown along with any new lights""" | |
97 self.selectedlights = self.origselection + [l for l in newlightnames if l not in self.origselection] | |
98 self.updateselectionboxes() | |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
99 |
7 | 100 def select(self,lightname,select=1,dyn=0): # select=0 for deselect |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
101 if select: |
7 | 102 if lightname not in self.selectedlights: |
103 self.selectedlights.append(lightname) | |
104 elif lightname in self.selectedlights: | |
105 self.selectedlights.remove(lightname) | |
106 | |
107 self.updateselectionboxes() | |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
108 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
109 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
110 # |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
111 # LMB click or drag |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
112 # |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
113 def leftpress(self,ev): |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
114 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
115 self.lmbstate='pressed' |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
116 self.lmbstart=(ev.x,ev.y) |
10 | 117 print "click at",self.lmbstart |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
118 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
119 shifted=ev.state & 1 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
120 control=ev.state & 4 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
121 touching=self.findoverlappinglights((ev.x-self.halo,ev.y-self.halo,ev.x+self.halo,ev.y+self.halo)) |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
122 istouching=len(touching)>0 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
123 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
124 if not istouching: |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
125 # clicked in space |
7 | 126 if not shifted and not control and len(self.selectedlights)>0: |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
127 # either a deselect (if no motion) or a level change (if motion) |
7 | 128 self.lmbstate = 'deselect-or-level' |
129 if shifted or control or len(self.selectedlights)==0: | |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
130 # with shift/control, add/subtract lights to selection |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
131 self.lmbstate='rectangle' |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
132 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
133 else: |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
134 # clicked a selectable object |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
135 # toggle selection |
7 | 136 if touching[0] in self.selectedlights: |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
137 if shifted: |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
138 # deselect |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
139 self.select(touching[0],0) |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
140 # and do nothing else |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
141 self.lmbstate=None |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
142 else: |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
143 # select only this light |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
144 self.clearselection() |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
145 self.select(touching[0]) |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
146 # and adjust its level |
37
115636cca107
subeditor begins to work - stage makes the right calls to subeditor now
drewp
parents:
17
diff
changeset
|
147 self.startlevelchange() |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
148 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
149 else: |
17 | 150 # clicked a light that wasn't selected |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
151 if not shifted: |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
152 self.clearselection() |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
153 self.select(touching[0]) |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
154 # and adjust levels now |
37
115636cca107
subeditor begins to work - stage makes the right calls to subeditor now
drewp
parents:
17
diff
changeset
|
155 self.startlevelchange() |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
156 |
7 | 157 if self.lmbstate=='rectangle': |
158 self.markfordynselection() | |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
159 def leftmotion(self,ev): |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
160 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
161 coords=(ev.x,ev.y) |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
162 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
163 shifted=ev.state & 1 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
164 control=ev.state & 4 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
165 |
7 | 166 if self.lmbstate=='deselect-or-level': |
167 if (coords[0]-self.lmbstart[0])**2+(coords[1]-self.lmbstart[1])**2>self.halo**2: | |
168 # they moved enough, it's a level change | |
37
115636cca107
subeditor begins to work - stage makes the right calls to subeditor now
drewp
parents:
17
diff
changeset
|
169 self.startlevelchange() |
7 | 170 |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
171 if self.lmbstate=='levelchange': |
37
115636cca107
subeditor begins to work - stage makes the right calls to subeditor now
drewp
parents:
17
diff
changeset
|
172 delta = (self.lmbstart[1]-ev.y) |
115636cca107
subeditor begins to work - stage makes the right calls to subeditor now
drewp
parents:
17
diff
changeset
|
173 if self.subeditor: |
115636cca107
subeditor begins to work - stage makes the right calls to subeditor now
drewp
parents:
17
diff
changeset
|
174 self.subeditor.levelchange(self.selectedlights,delta) |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
175 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
176 if self.lmbstate=='rectangle': |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
177 sr = self.find_withtag('selectrect') |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
178 if not sr: |
8 | 179 sr=self.create_rectangle( self.lmbstart[0],self.lmbstart[1],coords[0],coords[1], |
14 | 180 outlinestipple='gray50',outline='yellow', |
8 | 181 tag='selectrect') |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
182 |
8 | 183 # move rectangle with mouse |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
184 self.coords(sr,*(self.lmbstart+coords)) |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
185 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
186 # redo the dynselection with the new rectangle |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
187 self.replacedynselection([o for o in self.findoverlappinglights((self.lmbstart+coords),1)]) |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
188 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
189 # need to handle ctrl |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
190 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
191 def leftrelease(self,ev): |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
192 if self.lmbstate: |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
193 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
194 if self.lmbstate=='rectangle': |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
195 self.delete('selectrect') |
7 | 196 |
197 if self.lmbstate=='deselect-or-level': | |
198 # they didn't move enough to promote the mode to level, so it's a deselect click | |
199 self.clearselection() | |
0 | 200 |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
201 # all items that were in dynselection join the selection |
7 | 202 # self.incorporatedynselection() |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
203 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
204 self.lmbstate=None |
37
115636cca107
subeditor begins to work - stage makes the right calls to subeditor now
drewp
parents:
17
diff
changeset
|
205 def startlevelchange(self): |
115636cca107
subeditor begins to work - stage makes the right calls to subeditor now
drewp
parents:
17
diff
changeset
|
206 self.lmbstate='levelchange' |
115636cca107
subeditor begins to work - stage makes the right calls to subeditor now
drewp
parents:
17
diff
changeset
|
207 if self.subeditor: |
115636cca107
subeditor begins to work - stage makes the right calls to subeditor now
drewp
parents:
17
diff
changeset
|
208 self.subeditor.startlevelchange() |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
209 |
7 | 210 # |
211 # light names vs. canvas object tags | |
212 # | |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
213 def nametag(self,name): |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
214 "returns a safe version of the name that won't match other names" |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
215 return name.replace(" ","__") |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
216 |
7 | 217 def tagtoname(self,tag): |
218 "finds the real light name for a tag written by nametag()" | |
219 return self.alllighttags[tag] | |
220 | |
221 # | |
222 # light methods | |
223 # | |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
224 def addlight(self,name,location,aim=None): |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
225 tags='light selectable name_%s' % self.nametag(name) |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
226 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
227 self.create_oval(location[0]-2,location[1]-2, |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
228 location[0]+2,location[1]+2, |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
229 fill='red',tag=tags+" hotspot") |
7 | 230 if aim: |
231 self.create_oval(aim[0]-2,aim[1]-2, | |
232 aim[0]+2,aim[1]+2, | |
233 fill='red',tag=tags+" hotspot") | |
14 | 234 self.create_line(location[0],location[1],aim[0],aim[1],fill='lightblue', |
7 | 235 arrow='last',arrowshape="9 15 6",tag='light') |
14 | 236 self.create_text(location[0]-1,location[1]+6,anchor='n',text=name,fill='black',tag=tags,**dict([(k,v) for k,v in textstyle.items() if k!='fill'])) |
237 self.create_text(location[0],location[1]+5,anchor='n',text=name,tag=tags,**textstyle) | |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
238 self.alllights.append(name) |
7 | 239 self.alllighttags[self.nametag(name)]=name |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
240 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
241 def getlightbboxes(self,tag): |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
242 """returns a list of bboxes for a light with a given name_ tag. the selection |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
243 mechanism draws around these bboxes to show that a light is selected""" |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
244 bboxes=[] |
7 | 245 for o in self.find_withtag("name_%s" % self.nametag(tag)): |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
246 if 'hotspot' in self.gettags(o): |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
247 bboxes.append(self.bbox(o)) |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
248 return bboxes |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
249 |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
250 def findoverlappinglights(self,box,enclosed=0): |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
251 "returns all the different name_ tags for lights that are within (or enclosed by) the box" |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
252 lights=[] |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
253 if enclosed: |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
254 candidates = self.find_enclosed(*box) |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
255 else: |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
256 candidates = self.find_overlapping(*box) |
7 | 257 |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
258 for o in candidates: |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
259 for t in self.gettags(o): |
7 | 260 if t.startswith("name_"): |
261 n = self.tagtoname(t[5:]) | |
262 if n and (n not in lights): | |
263 lights.append(n) | |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
264 return lights |
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
265 |
10 | 266 |
14 | 267 def createlights(s): |
268 s.setimage('guysanddolls.gif') | |
269 s.addlight('desk1',(46, 659), aim=(210, 381)) | |
270 s.addlight('marry1',(78, 661), aim=(398, 428)) | |
271 s.addlight('b13',(110, 661)) | |
272 s.addlight('hotbox1',(147, 657), aim=(402, 327)) | |
273 s.addlight('edge',(179, 651), aim=(116, 441)) | |
274 s.addlight('phone',(214, 652), aim=(651, 417)) | |
275 s.addlight('cuba1',(315, 656), aim=(559, 407)) | |
276 s.addlight('b22',(347, 661), aim=(247, 458)) | |
277 s.addlight('b23',(379, 661)) | |
278 s.addlight('b24',(417, 661)) | |
279 s.addlight('b25',(455, 658), aim=(520, 466)) | |
280 s.addlight('desk2',(490, 655), aim=(237, 375)) | |
281 s.addlight('rock',(571, 655), aim=(286, 304)) | |
282 s.addlight('b32',(606, 650)) | |
283 s.addlight('hotbox2',(637, 650), aim=(433, 337)) | |
284 s.addlight('b34',(671, 651)) | |
285 s.addlight('marry2',(703, 651), aim=(429, 426)) | |
286 s.addlight('cuba2',(733, 652), aim=(602, 408)) | |
287 | |
288 s.addlight('sidefill1',(115, 473),aim=(228, 423)) | |
289 s.addlight('sidefill2',(617, 475),aim=(526, 425)) | |
290 | |
291 s.addlight('cycright',(485, 164),(483, 109)) | |
292 s.addlight('cycleft',(330, 154),(333, 108)) | |
293 | |
294 s.addlight('upfill1',(275, 325),(262, 237)) | |
295 s.addlight('upfill2',(333, 326),(330, 229)) | |
296 s.addlight('upfill3',(473, 325),(454, 226)) | |
297 s.addlight('upfill4',(541, 325),(528, 223)) | |
298 | |
299 s.addlight('god',(369,549)) | |
300 | |
301 s.addlight('patio1',(42, 560),(12, 512)) | |
302 s.addlight('patio2',(675, 553),(793, 514)) | |
303 | |
304 s.addlight('hotback',(413, 476),(414, 396)) | |
10 | 305 |
6
119369e60da1
tag-heavy selection management is getting hard - about to switch to python lists
drewp
parents:
5
diff
changeset
|
306 |
14 | 307 |
308 if __name__=='__main__': | |
309 root=Tk() | |
310 root.wm_geometry("+376+330") | |
311 s=Stage(root) | |
312 s.setimage('guysanddolls.gif') | |
313 s.pack() | |
314 | |
315 createlights(s) | |
316 root.mainloop() | |
317 |