Update to 0.7.1f
This commit is contained in:
129
game/screens.rpy
129
game/screens.rpy
@ -957,7 +957,6 @@ screen navigation(main_mm=False):
|
||||
else:
|
||||
color '#C0B9DB'
|
||||
|
||||
|
||||
if not main_menu:
|
||||
viewport:
|
||||
xmaximum 435
|
||||
@ -1226,7 +1225,8 @@ screen main_menu():
|
||||
yoffset -4
|
||||
xoffset 6
|
||||
spacing 2
|
||||
for key, lng in langs.items():
|
||||
for key in ['None','english','chinese','russian']:
|
||||
$ lng = langs[key]
|
||||
if key != str(_preferences.language) and key != 'None':
|
||||
viewport:
|
||||
xsize 175
|
||||
@ -1252,7 +1252,7 @@ screen main_menu():
|
||||
yoffset -6
|
||||
xoffset 8
|
||||
spacing 8
|
||||
add Transform('images/main_interface/flags/'+ str(_preferences.language).title() + '.png', zoom = 1.2) yalign .5
|
||||
add Transform('images/main_interface/flags/'+ str(If(_preferences.language is None, true = 'english', false = _preferences.language)).title() + '.png', zoom = 1.2) yalign .5
|
||||
add Text(langs[str(_preferences.language)], color = '#33264F', size = 17, font = 'fonts/h_font.ttf') yalign .5
|
||||
imagebutton:
|
||||
xsize 186
|
||||
@ -1805,7 +1805,11 @@ screen about():
|
||||
add Text('Skida Des{color=#FFE2B6} - 3D Designer{/color}', font= 'fonts/h_font.ttf', color="#FFC289", size = 18)
|
||||
add Text('Max Green{color=#FFE2B6} - Programmer{/color}', font= 'fonts/h_font.ttf', color="#FFC289", size = 18)
|
||||
add Text('Paul Meskado{color=#FFE2B6} - 2D Designer{/color}', font= 'fonts/h_font.ttf', color="#FFC289", size = 18)
|
||||
add Text('Marie G.{color=#FFE2B6} - 2D/3D Designer{/color}', font= 'fonts/h_font.ttf', color="#FFC289", size = 18)
|
||||
add Text('Pablo Alexander{color=#FFE2B6} - Writer{/color}', font= 'fonts/h_font.ttf', color="#FFC289", size = 18)
|
||||
add Text('Iris Oswald{color=#FFE2B6} - Writer{/color}', font= 'fonts/h_font.ttf', color="#FFC289", size = 18)
|
||||
add Text('Antony Boleyn{color=#FFE2B6} - QA Tester{/color}', font= 'fonts/h_font.ttf', color="#FFC289", size = 18)
|
||||
|
||||
add Text('Lilu Dallas{color=#FFE2B688} - 2D/3D Designer{/color} {rt}{size=12}{color=#FF785A}LEFT{/color}{/size}{/rt}', font= 'fonts/h_font.ttf', color="#FFC289", size = 18)
|
||||
add Text('Maria Triangle{color=#FFE2B688} - 2D Designer{/color} {rt}{size=12}{color=#FF785A}LEFT{/color}{/size}{/rt}', font= 'fonts/h_font.ttf', color="#FFC289", size = 18)
|
||||
add Text('Vonner Rom{color=#FFE2B688} - Programmer{/color} {rt}{size=12}{color=#FF785A}LEFT{/color}{/size}{/rt}', font= 'fonts/h_font.ttf', color="#FFC289", size = 18)
|
||||
@ -1884,6 +1888,10 @@ screen about_2():
|
||||
vbox:
|
||||
xalign .5
|
||||
for i in [
|
||||
'v0.7.1f',
|
||||
"Added an option to {font=fonts/roboto_medium.ttf}{color=#ffe2b6}transfer{/color}{/font} your {font=fonts/roboto_medium.ttf}{color=#ffe2b6}progress{/color}{/font} to the {font=fonts/roboto_medium.ttf}{color=#ffe2b6}next season{/color}{/font} build.",
|
||||
"Rewritten and {font=fonts/roboto_medium.ttf}{color=#ffe2b6}improved{/color}{/font} pieces of {font=fonts/roboto_medium.ttf}{color=#ffe2b6}dialogue{/color}{/font} all across the game.",
|
||||
"{font=fonts/roboto_medium.ttf}{color=#ffe2b6}Fixed{/color}{/font} a lot of bugs and {font=fonts/roboto_medium.ttf}{color=#ffe2b6}typos{/color}{/font}.",
|
||||
'v0.7.1d',
|
||||
"Now you can rewatch all animations at the end of the scene.",
|
||||
"Added sound design for X-scenes, including female moans.",
|
||||
@ -2183,6 +2191,11 @@ screen gallery():
|
||||
|
||||
use file_slots(_("Gallery"))
|
||||
|
||||
screen transfer():
|
||||
tag menu
|
||||
|
||||
use file_slots(_("Transfer"))
|
||||
|
||||
init -100 python:
|
||||
gallery_picks = [
|
||||
'images/ero/x0.png',
|
||||
@ -2290,7 +2303,105 @@ screen file_slots(title):
|
||||
|
||||
order_reverse True
|
||||
|
||||
if title == "Gallery":
|
||||
if title == "Transfer":
|
||||
|
||||
text _("Choose a save file with progress that you want to transfer to the next season") style "page_label_text" color '#FFEEDE' size 24 font 'fonts/h_font.ttf' xalign .5 yalign .16
|
||||
|
||||
button:
|
||||
style "page_label"
|
||||
|
||||
key_events True
|
||||
xalign 0.5
|
||||
yalign .24
|
||||
action page_name_value.Toggle()
|
||||
|
||||
input:
|
||||
style "page_label_text"
|
||||
color '#FFEEDE'
|
||||
size 30
|
||||
font 'fonts/h_font.ttf'
|
||||
value page_name_value
|
||||
|
||||
grid 5 3:
|
||||
style_prefix "slot"
|
||||
xalign 0.5
|
||||
yalign 0.5
|
||||
spacing 15
|
||||
for i in range(5 * 3):
|
||||
$ slot = i + 1
|
||||
$ ttt = FileTime(slot, format=_("{#file_time}%A, %B %d %Y, %H:%M"), empty=_("empty slot"))
|
||||
$ _data = FileJson(slot)
|
||||
if _data is not None and _data.get('_game') is not None and not _data['_game']:
|
||||
$ _lsave = "save_nv"
|
||||
$ selecting = 'Visual novel'
|
||||
else:
|
||||
$ _lsave = "save_sb"
|
||||
$ selecting = 'Sandbox'
|
||||
|
||||
$ confirm_text = "Congratulations!\nYou have chosen to transfer the progress from save file: {0}\nUse it in the next season when selecting \"{1}\"".format(persistent._file_page + "-" + str(slot) + ".save ("+ttt+")", selecting)
|
||||
|
||||
viewport:
|
||||
xmaximum 220
|
||||
ymaximum 146
|
||||
imagebutton:
|
||||
idle 'main_menu/slot_idle_background.png'
|
||||
hover 'main_menu/slot_idle_background.png'
|
||||
action NullAction()
|
||||
viewport:
|
||||
add Frame(FileScreenshot(slot))
|
||||
ymaximum 124
|
||||
|
||||
if ttt != "empty slot":
|
||||
|
||||
imagebutton:
|
||||
idle '#0f00'
|
||||
hover '#0f02'
|
||||
action Show('confirm', message= confirm_text, yes_action = [Function(TransferDataToNewS, name_slot = persistent._file_page + "-" + str(slot), name_save = _lsave, time = FileTime(slot, format=_("%m/%d/%Y %H:%M"))),Hide('confirm'),ShowMenu("load")], no_action = [Hide('confirm')], yes_text = _('Agree'), no_text = _('Cancel'))
|
||||
|
||||
add 'load_save_icon' yalign 1.0
|
||||
add Text(ttt, color = '#160F32', size = 10, font = 'fonts/h_font.ttf') alpha .7 xalign .5 yalign .97
|
||||
viewport:
|
||||
xpos 6
|
||||
ypos 0
|
||||
xmaximum 40
|
||||
ymaximum 125
|
||||
add _lsave
|
||||
|
||||
viewport:
|
||||
xalign .99
|
||||
yalign .82
|
||||
xsize 50
|
||||
ysize 20
|
||||
add '#000a'
|
||||
add Text(_data['_version'], color = '#FFF', size = 10, font = 'fonts/h_font.ttf') xalign .5 yalign .5
|
||||
|
||||
hbox:
|
||||
style_prefix "page"
|
||||
xalign 0.5
|
||||
yalign .76
|
||||
spacing gui.page_spacing
|
||||
imagebutton:
|
||||
idle Transform('main_menu/arrow_left_right.png')
|
||||
hover Transform(im.MatrixColor('main_menu/arrow_left_right.png', im.matrix.brightness(.3)))
|
||||
action FilePagePrevious()
|
||||
ypos 15
|
||||
if config.has_autosave:
|
||||
textbutton _("{#auto_page}A") action FilePage("auto") text_idle_color '#D6B49D' text_hover_color '#FFEEDE' text_selected_color '#FFEEDE' ypos 12
|
||||
|
||||
if config.has_quicksave:
|
||||
textbutton _("{#quick_page}Q") action FilePage("quick") text_idle_color '#D6B49D' text_hover_color '#FFEEDE' text_selected_color '#FFEEDE' ypos 12
|
||||
|
||||
|
||||
for page in range(1, 10):
|
||||
textbutton "[page]" action FilePage(page) text_idle_color '#D6B49D' text_hover_color '#FFEEDE' text_selected_color '#FFEEDE' ypos 12
|
||||
|
||||
imagebutton:
|
||||
idle Transform('main_menu/arrow_left_right.png', xzoom = -1)
|
||||
hover Transform(im.MatrixColor('main_menu/arrow_left_right.png', im.matrix.brightness(.3)), xzoom = -1)
|
||||
action FilePageNext()
|
||||
ypos 15
|
||||
|
||||
elif title == "Gallery":
|
||||
|
||||
$ max_page_gallery = 1 + (len(gallery_data) // 15)
|
||||
|
||||
@ -2354,6 +2465,15 @@ screen file_slots(title):
|
||||
ypos 15
|
||||
else:
|
||||
|
||||
if renpy.current_screen().screen_name[0] == "load" and len(renpy.list_slots()) > 0:
|
||||
|
||||
imagebutton:
|
||||
yalign .1
|
||||
xalign .786
|
||||
idle 'main_interface/transfer_banner.png'
|
||||
hover Transform(im.MatrixColor('main_interface/transfer_banner.png', im.matrix.brightness(.2)))
|
||||
action ShowMenu("transfer")
|
||||
|
||||
button:
|
||||
style "page_label"
|
||||
|
||||
@ -3469,6 +3589,7 @@ screen confirm(message, yes_action, no_action, yes_text=_("Yes"), no_text=_("No"
|
||||
color '#292C4B'
|
||||
xalign .5
|
||||
yalign .2
|
||||
text_align .5
|
||||
hbox:
|
||||
xalign .5
|
||||
yalign .5
|
||||
|
||||
Reference in New Issue
Block a user