Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: existierende Karte nicht mehr löschen! #71

Merged
merged 2 commits into from
Aug 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 20 additions & 10 deletions src/scripts/mapper/ladeStartgebiet.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,30 @@ function ladeStartgebiet()
return
end

-- Ggf. Backup vorab?
-- FIXME: wegen initGMCP kommt gleich noch GMCP.MG.room zurück und wir wollen keinen weiteren Raum erstellen!
local mode = mapper.mode
if mode ~= "fix" then
setMapperMode("fix")
tempTimer(1, f"setMapperMode('{mode}')")
end

-- Bereits Karte vorhanden?
if not istKarteLeer() then
echoM("Es war bereits eine Karte vorhanden. Speichere Backup, bevor sie überschrieben wird...")
echoM("Es war schon eine Karte vorhanden. OK.")
local roomID = getPlayerRoom()
mapper.currentRoom = roomID
mapper.currentHash = getRoomHashByID(roomID)
mapper.currentArea = getRoomArea(roomID)
return
end

-- Derzeit kein Backup gewünscht
if false then
echoM("Speichere Backup, bevor die Karte überschrieben wird...")
local datetimestamp = getTime(true, "yyyy-MM-dd_hh-mm-ss")
local success = saveMap(f"{getMudletHomeDir()}/map/Backup_{datetimestamp}.dat")
if not success then
echoM("Backup fehlgeschlagen! Breche ab. :(")
echoM("Backup fehlgeschlagen! Breche ab. :(")
return
end
echoM("Backup erfolgreich!")
Expand Down Expand Up @@ -68,13 +85,6 @@ function ladeStartgebiet()
centerview(1)
end

-- FIXME: wegen initGMCP kommt gleich noch GMCP.MG.room zurück und wir wollen keinen weiteren Raum erstellen!
local mode = mapper.mode
if mode ~= "fix" then
setMapperMode("fix")
tempTimer(1, f"setMapperMode('{mode}')")
end

tempTimer(0, "setMapZoom(5)")

GUI = GUI or {}
Expand Down