Skip to content

Commit 96132e7

Browse files
authored
Merge pull request ufosc#137 from Lance-Tan/main
Updated Backgrounds (issue ufosc#97)
2 parents d1a062c + 04a1470 commit 96132e7

File tree

14 files changed

+189
-43
lines changed

14 files changed

+189
-43
lines changed

.vscode/settings.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"files.exclude": {
3+
"**/*.rpyc": true,
4+
"**/*.rpa": true,
5+
"**/*.rpymc": true,
6+
"**/cache/": true
7+
}
8+
}
2.12 MB
Loading

BytesOfLove/game/script.rpy

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,14 +143,15 @@ image w0_d3_buffet = "backgrounds/hotelBuffet.jpg"
143143

144144

145145
#new backgrounds
146+
image breakout_room = "backgrounds/breakout-room.PNG"
146147
image campus_pathway = "backgrounds/campus_pathway.PNG"
147148
image dining_hall = "backgrounds/dining-hall.PNG"
148149
image driving_car = "backgrounds/driving-car.png"
149150
image empty_lecture_hall = "backgrounds/empty-lecture-hall.png"
150151
image full_lecture_hall = "backgrounds/full-lecture-hall.png"
151152
image hotel_buffet = "backgrounds/hotel-buffet.png"
152153
image hotel_room_day = "backgrounds/hotel-room-day.png"
153-
image hotel-room-night = "backgrounds/hotel-room-night.png"
154+
image hotel_room_night = "backgrounds/hotel-room-night.png"
154155
image office = "backgrounds/office.PNG"
155156
image parking_lot = "backgrounds/parking-lot.png"
156157
image starting_car = "backgrounds/starting-car.png"
@@ -163,6 +164,7 @@ image vending_machine = "backgrounds/vending-machine.PNG"
163164

164165

165166

167+
166168
image w0_d3_Advisor = "backgrounds/ciseDungeon.png"
167169

168170
image w0_d3_parkingLot = "backgrounds/IMG_3556.jpg"
@@ -229,7 +231,7 @@ init python:
229231
label start:
230232
stop music fadeout 4
231233
# PROLOUGUE
232-
scene instruction_screen with shorter_fade
234+
scene campus_pathway with shorter_fade
233235
"Welcome to Bytes of Love! A visual novel currently being developed by the University of Florida's Open Source Club!"
234236
"This is an educational dating simulator where you build relationships with other programming languages that are represented as anime-style characters."
235237
"Throughout the game, these characters will immerse you into computer science and the college experience."

BytesOfLove/game/scripts/before_orientation/before_orientation.rpy

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
label w0_d1:
2-
scene w0_d1_hotel
2+
scene hotel_room_night
33

44
mc "Man, I can't believe it, tomorrow is the first day of orientation at the University of Byteborough."
55
mc "I can't wait for everything I'm going to experience, all the parties, friends, clubs, and ladies!"
@@ -25,12 +25,12 @@ label w0_d1:
2525
jump w0_d1_DoorDash
2626

2727
label w0_d1_End:
28-
scene w0_d1_hotel with longer_fade
28+
scene hotel_room_night with longer_fade
2929
mc "Man that hit the spot."
3030
mc "Now what should I do with the rest of my night?"
3131
mc "I know I’ll play some Valorant. I’ve been grinding so I can go from silver to gold."
3232
#Add clock below when it is made - Lazzy
33-
scene w0_d1_hotel with shorter_fade
33+
scene hotel_room_night with shorter_fade
3434
"{i}Time passes it's now 11:30PM{/i}"
3535
mc "Now I’m Silver 3! I just have to win a few more games to push to gold!"
3636
mc "Do I play one more ranked game so I can get gold, or do I head to bed early so I'm not late in the morning?"
@@ -39,7 +39,7 @@ label w0_d1:
3939
mc "I have a big day tomorrow."
4040

4141
"Grind Valorant":
42-
scene w0_d1_hotel with shorter_fade
42+
scene hotel_room_night with shorter_fade
4343
mc "{i}*4 hours later*{/i}"
4444
mc "Wow, that was miserable. I went back and forth for 4 hours, and sacrificed my pride and rank."
4545
mc "Now it’s 3:30 AM, I deranked to Silver I, and I am so tired."

BytesOfLove/game/scripts/before_orientation/before_orientation_choices/w0_d1_DoorDash.rpy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
label w0_d1_DoorDash:
22
mc "I passed like 15 Chipotles on the way here, I bet I can order a burrito for dinner..."
33
# Edit transitions below when we have clock - Lazzy
4-
scene w0_d1_hotel with shorter_fade
4+
scene hotel_room_night with shorter_fade
55
"{i}*15 minutes later*{/i}"
66
mc "This driver sucks! I ordered this 30 minutes ago, and he still hasn’t picked it up!!!"
7-
scene w0_d1_hotel with shorter_fade
7+
scene hotel_room_night with shorter_fade
88
"{i}*20 minutes later*{/i}"
99
mc "Uuuugggghhhhh. I’m so hungry. Can this loser hurry up? It isn’t that hard to deliver food."
10-
scene w0_d1_hotel with shorter_fade
10+
scene hotel_room_night with shorter_fade
1111
"{i}*20 more minutes later, there is a knock at the door*{/i}"
1212
u "\"Are you [mc]? I’ve got your food.\""
1313
mc "{i}*Annoyed*{/i} \"What took you so long?\""

BytesOfLove/game/scripts/before_orientation/before_orientation_choices/w0_d1_RoomService.rpy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ label w0_d1_RoomService:
2020

2121
mc "Yeah, I HAVE to get [food_item]. You can’t go wrong with that."
2222
$ byte = bytecoin(byte, -15)
23-
scene w0_d1_hotel with shorter_fade
23+
scene hotel_room_night with shorter_fade
2424
"{i}*5 minutes pass*{/i}"
2525
mc "I hope this doesn’t take too long, I’m getting pretty hungry here."
2626
"{i}*You hear a knock on the door*{/i}"

BytesOfLove/game/scripts/before_orientation/before_orientation_choices/w0_d1_VendingMachine.rpy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ label w0_d1_VendingMachine:
33
mc "And, I will save some money. You never know when you’ll need it."
44
mc "I am pretty hungry though, maybe I should eat something more to fuel my body and mind."
55

6-
scene w0_d1_vending
6+
scene vending_machine
77
#scene test
88
"{i}*You walk downstairs to find a vending machine*{/i}"
99
"{i}*On your way to the vending machines you see someone*{/i}"

BytesOfLove/game/scripts/orientation/w0_d2.rpy

Lines changed: 24 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
label w0_d2:
2-
scene w0_d2_sunnyhotel with longer_fade
2+
scene hotel_room_day with longer_fade
33
"{i}You wake up in your room and look at the clock.{/i}"
44
"{i}It's 9:30AM, orientation started 15 minutes ago.{/i}"
55
mc "WHAT THE HELL?!?!?"
@@ -17,15 +17,15 @@ label w0_d2:
1717
mc "What kind of excuse can I come up with..."
1818
mc "I was sick? Family emergency? My car wouldn’t start?"
1919
"{i}You turn the key and the car struggles to start{/i}"
20-
scene w0_d2_urgentcar with shorter_fade
20+
scene starting_car with shorter_fade
2121
mc "WAIT NOT ACTUALLY! PLEASE START!!!"
22-
scene w0_d2_insidecar with shorter_fade
22+
scene driving_car with shorter_fade
2323
"{i}As the car starts, you sign in relief and speed off.{/i}"
2424
mc "I don’t even know where I’m going. This city is all new to me!"
2525
mc "I’m going to be so late..."
2626

2727
#"*Scene fades to the lecture hall.*" Current one is temporary
28-
scene w0_d2_lecturehall with longer_fade
28+
scene full_lecture_hall with longer_fade
2929
"{i}You burst through the doors into an nearly empty auditorium, looking around frantically in search of someone.{/i}"
3030
mc "Oh look there’s somebody."
3131
mc "She looks old, I wonder if she is a professor..."
@@ -81,7 +81,7 @@ label w0_d2:
8181

8282
# Insert transition to breakout room - Lazzy
8383
# currently put a temp one in - Anton
84-
scene w0_d2_breakout with fade
84+
scene breakout_room with fade
8585

8686
mc "Jeez, everyone’s here already, where am I going to sit?"
8787
mc "Oh! There’s a seat! And the company isn’t that bad either..."
@@ -221,52 +221,59 @@ label w0_d2:
221221
mc "\"Yeah I agree with Python, computer science definitely seems cool.\""
222222
mc "\"I’m just like you, I don’t have much experience, but I’m excited to learn.\""
223223
mc "\"And A.I. is a great field to make money in.\""
224+
hide python_pocket
225+
show python_pocket_happy at right
224226
p "\"I don’t care too much about the money, but it definitely won’t hurt!\""
227+
hide python_pocket_happy
228+
show python_pocket at right
225229

226230
"Respond to C++":
227231
$ c_rep = reputation(c_rep, 3)
228232
mc "\"I think it’s really cool that your parents work for those companies, C++.\""
229233
mc "\"I’ve never heard of iClicker or Mentimeter.\""
230234
mc "\"I don’t know much when it comes to coding, but you sound really experienced.\""
231235
mc "\"Maybe you could show me the ropes sometime...?\""
236+
hide cpp_normal
237+
show cpp_talk
232238
c "\"Sure, if you can keep up...\""
239+
hide cpp_talk
240+
show cpp_normal
233241

234242
bsl "\"Alright now, we’re gonna start our guided tour of campus!\""
235243

236244
#tour just started put scene change
237-
scene w0_d2_statue with fade
245+
scene statue_garden with fade
238246

239247
"{i}The group tours campus as the breakout session leader talks about random trivia{/i}"
240248
bsl "\"And if you look to your left you will see Half-A-Century Tower...\""
249+
show cpp_normal with dissolve
241250
c "\"Gosh, this is so boring.\""
242251
c "\"Who doesn’t know all of this stuff already?\""
243252
c "\"I mean did anybody really come to this school without already taking a tour?\""
244-
p "\"I didn’t... so this is interesting! I’m really enjoying this tour.\""
245-
246-
247253
show python_pocket_happy at left with dissolve
254+
p "\"I didn’t... so this is interesting! I’m really enjoying this tour.\""
248255
p "\"Like look at that cool statue over there.\""
249256
p "\"Don’t you guys think he looks cool?\""
250257
hide python_pocket_happy
251258
show python_pocket at left
252-
show cpp_talk with dissolve
259+
hide cpp_normal
260+
show cpp_talk
253261
c "\"Oh? You think that’s cool?\""
254262
c "\"That statue is actually Thomas ‘Firewall’ Jackson.\""
255263
c "\"He was a general in a huge war a while ago and the armies he commanded were basically impenetrable.\""
256264
c "\"But, he killed a lot of people...\""
257265
c "\"You really think someone like that is cool??\""
258-
259266
hide cpp_talk
260267
show cpp_normal
261-
262268
hide python_pocket
263269
show python_pocket_happy at left
264270
p "\"Oh, well I didn’t realize that...\""
265-
266271
hide cpp_normal
267272
show cpp_talk
268273
c "\"Yeah, I wouldn’t expect someone like you to know basic history...\""
269-
show js_normal at right with dissolve
274+
hide cpp_talk
275+
show cpp_normal
276+
show js_talk at right with dissolve
270277
js "\"Well I thought he was cool looking too, it was just an honest mistake.\""
271278
js "\"There’s no need to be so aggressive, C++...\""
272279

@@ -286,7 +293,7 @@ label w0_d2_AfterStatue:
286293
bsl "\"Now we will be taking a break for lunch.\""
287294

288295
#change scene to cafeteria
289-
scene w0_d2_cafeteria with longer_fade
296+
scene dining_hall with longer_fade
290297

291298

292299
bsl "\"The different food stations are located around the room.\""
@@ -312,7 +319,7 @@ label w0_d2_AfterLunch:
312319
bsl "\"Everyone, make sure you get back to Room 283 in 10 minutes.\""
313320

314321

315-
scene w0_d2_breakout with fade
322+
scene breakout_room with fade
316323

317324
bsl "\"Okay guys, we are now going to be playing a fun game to test your knowledge.\""
318325
bsl "\"Since The University of ByteBorough is renowned for the College of Computing...\""
@@ -648,7 +655,7 @@ label w0_d2_AfterLunch:
648655
c "\"I guess it wasn’t boring...\""
649656
"{i}Everyone laughs.{/i}"
650657

651-
scene w0_d1_hotel with longer_fade
658+
scene hotel_room_night with longer_fade
652659
mc "\"Well, that was a fun day.\""
653660
mc "\"Those girls were so nice, I hope I can run into them again tomorrow.\""
654661
mc "\"One thing is for sure, I can’t stay up late again.\""

BytesOfLove/game/scripts/orientation/w0_d2_choices/w0_d2_LunchApology.rpy

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
label w0_d2_LunchApology:
2+
hide python_pocket
3+
show python_pocket_happy at left
24
p "\"Hey JavaScript!\""
35
p "\"Is it okay if we join you?\""
6+
hide python_pocket_happy
7+
show python_pocket at left
8+
hide js_normal
9+
show js_talk
410
js "\"Yeah, sure!\""
5-
#hide python_happy
6-
#show python_pocket
7-
#show cpp_normal at right with dissolve
11+
hide js_talk
12+
show js_normal
813
mc "\"Lunch was good, I am glad that we got to eat some good food.\""
914

1015
menu w0_d2_LunchApologyC:
@@ -30,8 +35,16 @@ menu w0_d2_LunchFlirtDecision:
3035
jump w0_d2_LunchFlirt
3136

3237
"Don't Flirt":
38+
hide js_normal
39+
show js_talk
3340
js "\"I totally agree, [mc]!\""
3441
js "\"I think we can be good friends as well.\""
42+
hide js_talk
43+
show js_normal
44+
hide python_pocket
45+
show python_pocket_happy at left
3546
p "\"Yeah, and it’s so good that we are all computer science majors.\""
3647
p "\"Hopefully we will have a lot of classes together.\""
48+
hide python_pocket_happy
49+
show python_pocket at left
3750
jump w0_d2_AfterLunch

BytesOfLove/game/scripts/orientation/w0_d2_choices/w0_d2_LunchFlirt.rpy

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,34 +4,70 @@ label w0_d2_LunchFlirt:
44
$ p_rep = reputation(p_rep, -2)
55
mc "\"Especially you Python.\""
66
mc "{i}Winks{/i}"
7+
hide python_pocket
8+
show python_pocket_happy at left
79
p "\"Wow, way to ruin an apology.\""
810
p "\"I expected nothing less.\""
11+
hide python_pocket_happy
12+
show python_pocket at left
13+
hide cpp_normal
14+
show cpp_talk at right
915
c "\"Typical man...\""
16+
hide cpp_talk
17+
show cpp_normal at right
1018
"Flirt with C++":
1119
$ c_rep = reputation(c_rep, -2)
1220
mc "\"Especially you C++.\""
1321
mc "{i}Winks{/i}"
22+
hide cpp_normal
23+
show cpp_talk at right
1424
c "\"Wow, way to ruin an apology.\""
1525
c "\"I expected nothing less.\""
26+
hide cpp_talk
27+
show cpp_normal at right
28+
hide js_normal
29+
show js_talk
1630
js "\"What a simp...\""
31+
hide js_talk
32+
show js_normal
1733

1834
"Flirt with JavaScript":
1935
$ js_rep = reputation(js_rep, -2)
2036
mc "\"Especially you JavaScript.\""
2137
mc "{i}Winks{/i}"
38+
hide js_normal
39+
show js_talk
2240
js "\"Wow, way to ruin an apology.\""
2341
js "\"I expected nothing less.\""
42+
hide js_talk
43+
show js_normal
44+
hide cpp_normal
45+
show cpp_talk at right
2446
c "\"Men...\""
47+
hide cpp_talk
48+
show cpp_normal at right
2549

2650
"Everyone":
2751
$ p_rep = reputation(p_rep, -6)
2852
$ js_rep = reputation(js_rep, -6)
2953
$ c_rep = reputation(c_rep, -6)
3054
mc "\"Maybe I could get to know all of you really well back at my hotel tonight...\""
55+
hide cpp_normal
56+
show cpp_talk at right
3157
c "\"What the actual fuck is wrong with you.\""
3258
c "\"That is so disgusting.\""
59+
hide cpp_talk
60+
show cpp_normal at right
61+
hide python_pocket
62+
show python_angry_talk at left
3363
p "\"I can’t believe you, you are despicable.\""
64+
hide python_angry_talk
65+
show python_angry at left
66+
hide js_normal
67+
show js_talk
3468
js "\"I think I might actually throw up...\""
69+
hide js_talk
70+
show js_normal
3571

3672
mc "\"Hmm, I thought that would go differently.\""
3773
mc "\"Can’t blame me, shooters gotta shoot...\""

0 commit comments

Comments
 (0)