mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-10-22 07:28:14 +00:00
119 lines
3.9 KiB
GDScript
119 lines
3.9 KiB
GDScript
extends VBoxContainer
|
|
|
|
signal closed
|
|
|
|
const LEVEL_INFO_URL := "https://levelsharesquare.com/api/levels/"
|
|
|
|
static var level_id := ""
|
|
|
|
var has_downloaded := false
|
|
|
|
signal level_play
|
|
|
|
var level_thumbnail = null
|
|
|
|
var container_to_play: OnlineLevelContainer = null
|
|
|
|
static var saved_stuff := {}
|
|
|
|
func _ready() -> void:
|
|
set_process(false)
|
|
|
|
func open(container: OnlineLevelContainer) -> void:
|
|
container_to_play = container.duplicate()
|
|
has_downloaded = FileAccess.file_exists(Global.config_path.path_join("custom_levels/downloaded/" + container.level_id + ".lvl")) or saved_stuff.is_empty() == false
|
|
show()
|
|
level_thumbnail = container.level_thumbnail
|
|
%Download.text = "DOWNLOAD"
|
|
if has_downloaded:
|
|
%OnlinePlay.grab_focus()
|
|
else:
|
|
%Download.grab_focus()
|
|
setup_visuals(container)
|
|
reset_process()
|
|
|
|
func reset_process() -> void:
|
|
await get_tree().physics_frame
|
|
set_process(true)
|
|
|
|
func setup_visuals(container: OnlineLevelContainer) -> void:
|
|
$Panel/AutoScrollContainer.scroll_pos = 0
|
|
$Panel/AutoScrollContainer.move_direction = -1
|
|
%LSSDescription.text = "Fetching Description..."
|
|
if saved_stuff.is_empty():
|
|
$Description.request(LEVEL_INFO_URL + container.level_id)
|
|
else:
|
|
%LSSDescription.text = saved_stuff.description
|
|
for i in ["level_name", "level_author", "level_id", "thumbnail_url", "level_thumbnail", "difficulty"]:
|
|
var value = null
|
|
if saved_stuff.has(i):
|
|
value = saved_stuff[i]
|
|
else: value = container.get(i)
|
|
%SelectedOnlineLevel.set(i, value)
|
|
saved_stuff[i] = value
|
|
level_id = saved_stuff.level_id
|
|
%SelectedOnlineLevel.setup_visuals()
|
|
%Download.visible = not has_downloaded
|
|
%OnlinePlay.visible = has_downloaded
|
|
|
|
func _process(_delta: float) -> void:
|
|
if Input.is_action_just_pressed("ui_back"):
|
|
close()
|
|
|
|
func close() -> void:
|
|
hide()
|
|
closed.emit()
|
|
set_process(false)
|
|
|
|
func download_level() -> void:
|
|
DirAccess.make_dir_recursive_absolute(Global.config_path.path_join("custom_levels/downloaded"))
|
|
var url = "https://levelsharesquare.com/api/levels/" + level_id + "/code"
|
|
print(url)
|
|
$DownloadLevel.request(url, [], HTTPClient.METHOD_GET)
|
|
%Download.text = "DOWNLOADING..."
|
|
|
|
func open_lss() -> void:
|
|
print(level_id)
|
|
OS.shell_open("https://levelsharesquare.com/levels/" + str(level_id))
|
|
|
|
func on_request_completed(result: int, response_code: int, headers: PackedStringArray, body: PackedByteArray) -> void:
|
|
var string = body.get_string_from_utf8()
|
|
var json = JSON.parse_string(string)
|
|
%LSSDescription.text = Global.sanitize_string(json["level"]["description"])
|
|
saved_stuff.description = %LSSDescription.text
|
|
|
|
func level_downloaded(result: int, response_code: int, headers: PackedStringArray, body: PackedByteArray) -> void:
|
|
var string = body.get_string_from_utf8()
|
|
var json = JSON.parse_string(string)
|
|
var file = FileAccess.open(Global.config_path.path_join("custom_levels/downloaded/" + level_id + ".lvl"), FileAccess.WRITE)
|
|
var data = null
|
|
if json.levelData.data is Array:
|
|
data = get_json_from_bytes(json.levelData.data)
|
|
else:
|
|
data = json.levelData
|
|
file.store_string(JSON.stringify(str_to_var(data)))
|
|
file.close()
|
|
save_thumbnail()
|
|
%Download.hide()
|
|
%OnlinePlay.show()
|
|
%OnlinePlay.grab_focus()
|
|
|
|
func save_thumbnail() -> void:
|
|
if OnlineLevelContainer.cached_thumbnails.has(level_id):
|
|
var thumbnail = OnlineLevelContainer.cached_thumbnails.get(level_id)
|
|
DirAccess.make_dir_recursive_absolute(Global.config_path.path_join("custom_levels/downloaded/thumbnails"))
|
|
thumbnail.get_image().save_png(Global.config_path.path_join("custom_levels/downloaded/thumbnails/" + level_id + ".png"))
|
|
|
|
func play_level() -> void:
|
|
var file_path := Global.config_path.path_join("custom_levels/downloaded/" + level_id + ".lvl")
|
|
var file = JSON.parse_string(FileAccess.open(file_path, FileAccess.READ).get_as_text())
|
|
LevelEditor.level_file = file
|
|
set_process(false)
|
|
var info = file["Info"]
|
|
LevelEditor.level_author = info["Author"]
|
|
LevelEditor.level_name = info["Name"]
|
|
level_play.emit()
|
|
|
|
func get_json_from_bytes(json := []) -> String:
|
|
return PackedByteArray(json).get_string_from_ascii()
|