forked from Ahmed120515/Multimodal-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEnglishProject.py
More file actions
420 lines (313 loc) · 14.3 KB
/
EnglishProject.py
File metadata and controls
420 lines (313 loc) · 14.3 KB
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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
#############################
# project.py
#
# Your name: Ahmad Aljabri
# Your andrew id: aaljabri
#################################################
from cmu_graphics import *
import math
import random
#brazil qatar lebanon syria
def onAppStart(app):
app.enemies = []
app.background = rgb(224, 255, 255)
app.poem = r'./sprites/Poems.png'
app.china = r'./sprites/china.webp'
app.qatar = r'./sprites/qatar.png'
app.ethiopia = r'./sprites/ethiopia.png'
app.pakistan = r'./sprites/pakistan.png'
app.back = r'./sprites/back.webp'
app.home = r'./sprites/menu/houseIcon.png'
app.current = 0
app.state = 'start'
app.currentCountry = ''
app.backButton = r'./sprites/backButton.png'
app.menu = False
app.rightArrow = r'./sprites/ArrowRight.png'
app.s = False
app.harry = r'./sprites/Harry.jpeg'
app.harryVoice = Sound(r'./harryVoice.mp3')
app.jassim = r'./sprites/Jassim.jpeg'
app.jassimVoice = Sound(r'./jassimVoice.mp3')
app.mikiyas = r'./sprites/Mikiyas.jpeg'
app.mikiyasVoice = Sound(r'./mikiyasVoice.mp3')
app.aun = r'./sprites/Aun.jpeg'
app.aunVoice = Sound(r'./aunVoice.mp3')
def drawBackground(app):
#drawImage(app.back, 0,0,)
#drawImage(app.back, 600,0)
#drawImage(app.back, 600,200)
#drawImage(app.back, 600,400)
#drawImage(app.back, 0,0)
#drawImage(app.back, 0,200)
#drawImage(app.back, 0,400)
drawImage(app.backButton, 10,10,)
#drawImage(app.menu, 0,0,)
######################################################
# The Main Menu
######################################################
def main_onScreenActivate(app):
app.current = 0
def main_redrawAll(app):
# Draw the flags
drawImage(app.china, 50, 50, width=200, height=150)
drawImage(app.qatar, 550, 50, width=200, height=150)
drawImage(app.ethiopia, 50, 400, width=200, height=150)
drawImage(app.pakistan, 550, 400, width=200, height=150)
# Add borders for flag images
drawRect(50, 50, 200, 150, fill=None, border='black', borderWidth=0.5)
drawRect(550, 50, 200, 150, fill=None, border='black', borderWidth=0.5)
drawRect(50, 400, 200, 150, fill=None, border='black', borderWidth=0.5)
drawRect(550, 400, 200, 150, fill=None, border='black', borderWidth=0.5)
# Add author label
drawLabel("by Ahmad Aljabri", app.width // 2, 570, size=18, bold=True, align='center', fill='black')
# Add Poem button
buttonColor = 'lightgreen'
drawRect(app.width // 2 - 75, 470, 150, 50, fill=buttonColor, border='black', borderWidth=2)
drawLabel("Poems", app.width // 2, 495, size=20, bold=True, align='center')
# Add Context button
buttonColor = 'lightyellow'
drawRect(app.width // 2 - 75, 410, 150, 50, fill=buttonColor, border='black', borderWidth=2)
drawLabel("Context", app.width // 2, 435, size=20, bold=True, align='center')
def main_onMousePress(app, x, y):
# Check if Poem button is clicked
if 325 <= x <= 475 and 470 <= y <= 520:
setActiveScreen('poem')
# Check if Brazil flag is clicked
elif 50 <= x <= 250 and 50 <= y <= 200:
app.currentCountry = 'brazil'
setActiveScreen('brazil')
# Check if Qatar flag is clicked
elif 550 <= x <= 750 and 50 <= y <= 200:
app.currentCountry = 'qatar'
setActiveScreen('qatar')
# Check if Lebanon flag is clicked
elif 50 <= x <= 250 and 400 <= y <= 550:
app.currentCountry = 'lebanon'
setActiveScreen('lebanon')
# Check if Syria flag is clicked
elif 550 <= x <= 750 and 400 <= y <= 550:
app.currentCountry = 'syria'
setActiveScreen('syria')
# Check if Context button is clicked
elif 325 <= x <= 475 and 410 <= y <= 460:
setActiveScreen('context')
######################################################
# The context Menu
######################################################
def context_onScreenActivate(app):
app.current = 0
def context_redrawAll(app):
# Translanguaging context
# Title
drawLabel("Context", 400, 20, size=30, fill='black', align='center', bold=True)
# Context paragraph
drawLabel("Translanguaging is a powerful tool in academic contexts,", 400, 60, size=20, fill='black', align='center')
drawLabel("allowing students to draw from all their linguistic resources to", 400, 85, size=20, fill='black', align='center')
drawLabel("communicate and deepen their understanding of complex material", 400, 110, size=20, fill='black', align='center')
drawLabel("they are studying. By blending languages, translanguaging helps", 400, 135, size=20, fill='black', align='center')
drawLabel("bridge gaps in comprehension. This approach not only enhances", 400, 160, size=20, fill='black', align='center')
drawLabel("communication but also validates the diverse linguistic", 400, 185, size=20, fill='black', align='center')
drawLabel("backgrounds of students, promoting equity and creativity in education.", 400, 210, size=20, fill='black', align='center')
# Translanguaging Definition
drawLabel("Translanguaging:", 400, 260, size=25, fill='black', align='center', bold=True)
drawLabel("The process of using multiple languages fluidly to communicate,", 400, 300, size=20, fill='black', align='center')
drawLabel("learn, and create meaning, breaking traditional boundaries", 400, 325, size=20, fill='black', align='center')
drawLabel("between languages.", 400, 350, size=20, fill='black', align='center')
# Academic Translanguaging Definition
drawLabel("Academic Translanguaging:", 400, 400, size=25, fill='black', align='center', bold=True)
drawLabel("The use of multiple languages in academic work to enhance understanding,", 400, 450, size=20, fill='black', align='center')
drawLabel("foster creativity, and support learning by integrating diverse", 400, 475, size=20, fill='black', align='center')
drawLabel("linguistic resources.", 400, 500, size=20, fill='black', align='center')
# Draw the title
drawImage(app.backButton, 10,10,)
def context_onMousePress(app, x, y):
if 10 <= x <= 90 and 10 <= y <= 85:
setActiveScreen('main')
######################################################
# The Poem Menu
######################################################
def poem_onScreenActivate(app):
app.current = 0
def poem_redrawAll(app):
#drawBackground
drawImage(app.poem,0,0)#, width = 500 , height = 400
# Draw the title
drawImage(app.backButton, 10,10,)
def poem_onMousePress(app, x, y):
if 10 <= x <= 90 and 10 <= y <= 85:
setActiveScreen('main')
######################################################
# The Qatar Menu
######################################################
def qatar_redrawAll(app):
drawBackground(app)
drawImage(app.jassim, 50, 75, width = 300, height = 200, rotateAngle=90)
drawRect(50,350,700,100,fill=rgb(245, 245, 210),border='black')
if app.current == 0:
drawLabel('....', 100, 400, size = 16, align = 'left')
drawRect(50,455,700,35,fill=rgb(245, 245, 210),border='black')
drawRect(50,495,700,35,fill=rgb(245, 245, 210),border='black')
drawLabel('What do you think about translanguing', 90, 475, size = 16, align = 'left')
drawLabel("Can you say 'I will work on the project today' using translanguing", 90, 515, size = 16, align = 'left')
if app.current == 1:
drawLabel('I think translanguaging is important in academic settings because it helps me express ', 100, 400, size = 16, align = 'left')
drawLabel('my ideas effectively.', 100, 420, size = 16, align = 'left')
drawRect(50,455,700,35,fill=rgb(245, 245, 210),border='black')
drawLabel('back', 150, 475, size = 16, align = 'left')
if app.current == 2:
drawLabel('....', 150, 400, size = 16, align = 'left')
app.jassimVoice.play(restart = True)
drawRect(50,455,700,35,fill=rgb(245, 245, 210),border='black')
drawLabel('back', 150, 475, size = 16, align = 'left')
def qatar_onMousePress(app, x, y):
if 10 <= x <= 90 and 10 <= y <= 85:
try:
app.jassimVoice.pause()
setActiveScreen('main')
except:
setActiveScreen('main')
if 50 <= x <= 750 and 455 <= y <= 490:
if app.current == 1:
app.current = 0
elif app.current == 2:
app.current = 0
else:
app.current = 1
if 50 <= x <= 750 and 495 <= y <= 530:
if app.current == 1:
app.current = 0
if app.current == 2:
app.current = 0
else:
app.current = 2
######################################################
# The China Menu
######################################################
def brazil_redrawAll(app):
drawBackground(app)
drawImage(app.harry, 50, 75, width = 300, height = 200, rotateAngle=90)
drawRect(50,350,700,100,fill=rgb(245, 245, 210),border='black')
if app.current == 0:
drawLabel('....', 100, 400, size = 16, align = 'left')
drawRect(50,455,700,35,fill=rgb(245, 245, 210),border='black')
drawRect(50,495,700,35,fill=rgb(245, 245, 210),border='black')
drawLabel('What do you think about translanguing', 90, 475, size = 16, align = 'left')
drawLabel("Can you say 'I will work on the project today' using translanguing", 90, 515, size = 16, align = 'left')
if app.current == 1:
drawLabel('translanguaging helps me express myself and makes communication more comfortable.', 100, 400, size = 16, align = 'left')
drawRect(50,455,700,35,fill=rgb(245, 245, 210),border='black')
drawLabel('back', 150, 475, size = 16, align = 'left')
if app.current == 2:
drawLabel('....', 150, 400, size = 16, align = 'left')
app.harryVoice.play(restart = True)
drawRect(50,455,700,35,fill=rgb(245, 245, 210),border='black')
drawLabel('back', 150, 475, size = 16, align = 'left')
def brazil_onMousePress(app, x, y):
if 10 <= x <= 90 and 10 <= y <= 85:
try:
app.harryVoice.pause()
setActiveScreen('main')
except:
setActiveScreen('main')
if 50 <= x <= 750 and 455 <= y <= 490:
if app.current == 1:
app.current = 0
elif app.current == 2:
app.current = 0
else:
app.current = 1
if 50 <= x <= 750 and 495 <= y <= 530:
if app.current == 1:
app.current = 0
if app.current == 2:
app.current = 0
else:
app.current = 2
######################################################
# The Pakistan Menu
######################################################
def syria_redrawAll(app):
drawBackground(app)
drawImage(app.aun, 50, 75, width = 300, height = 200, rotateAngle=90)
drawRect(50,350,700,100,fill=rgb(245, 245, 210),border='black')
if app.current == 0:
drawLabel('....', 100, 400, size = 16, align = 'left')
drawRect(50,455,700,35,fill=rgb(245, 245, 210),border='black')
drawRect(50,495,700,35,fill=rgb(245, 245, 210),border='black')
drawLabel('What do you think about translanguing', 90, 475, size = 16, align = 'left')
drawLabel("Can you say 'I will work on the project today' using translanguing", 90, 515, size = 16, align = 'left')
if app.current == 1:
drawLabel('I often find myself using translanguaging in class to explain ideas ', 100, 400, size = 16, align = 'left')
drawRect(50,455,700,35,fill=rgb(245, 245, 210),border='black')
drawLabel('back', 150, 475, size = 16, align = 'left')
if app.current == 2:
drawLabel('....', 150, 400, size = 16, align = 'left')
app.aunVoice.play(restart = True)
drawRect(50,455,700,35,fill=rgb(245, 245, 210),border='black')
drawLabel('back', 150, 475, size = 16, align = 'left')
def syria_onMousePress(app, x, y):
if 10 <= x <= 90 and 10 <= y <= 85:
try:
app.aunVoice.pause()
setActiveScreen('main')
except:
setActiveScreen('main')
if 50 <= x <= 750 and 455 <= y <= 490:
if app.current == 1:
app.current = 0
elif app.current == 2:
app.current = 0
else:
app.current = 1
if 50 <= x <= 750 and 495 <= y <= 530:
if app.current == 1:
app.current = 0
if app.current == 2:
app.current = 0
else:
app.current = 2
######################################################
# The ethiopia Menu
######################################################
def lebanon_redrawAll(app):
drawBackground(app)
drawImage(app.mikiyas, 50, 75, width = 300, height = 200, rotateAngle=90)
drawRect(50,350,700,100,fill=rgb(245, 245, 210),border='black')
if app.current == 0:
drawLabel('....', 100, 400, size = 16, align = 'left')
drawRect(50,455,700,35,fill=rgb(245, 245, 210),border='black')
drawRect(50,495,700,35,fill=rgb(245, 245, 210),border='black')
drawLabel('What do you think about translanguing', 90, 475, size = 16, align = 'left')
drawLabel("Can you say 'I will work on the project today' using translanguing", 90, 515, size = 16, align = 'left')
if app.current == 1:
drawLabel('Translanguaging helps me combine my languages in a way that feels natural.', 100, 400, size = 16, align = 'left')
drawRect(50,455,700,35,fill=rgb(245, 245, 210),border='black')
drawLabel('back', 150, 475, size = 16, align = 'left')
if app.current == 2:
drawLabel('....', 150, 400, size = 16, align = 'left')
app.mikiyasVoice.play(restart = True)
drawRect(50,455,700,35,fill=rgb(245, 245, 210),border='black')
drawLabel('back', 150, 475, size = 16, align = 'left')
def lebanon_onMousePress(app, x, y):
if 10 <= x <= 90 and 10 <= y <= 85:
try:
app.mikiyasVoice.pause()
setActiveScreen('main')
except:
setActiveScreen('main')
if 50 <= x <= 750 and 455 <= y <= 490:
if app.current == 1:
app.current = 0
elif app.current == 2:
app.current = 0
else:
app.current = 1
if 50 <= x <= 750 and 495 <= y <= 530:
if app.current == 1:
app.current = 0
if app.current == 2:
app.current = 0
else:
app.current = 2
runAppWithScreens(initialScreen='main',width=800,height=600)