forked from minetest-mods/areas
-
Notifications
You must be signed in to change notification settings - Fork 1
Truncate long area names, store previous owner separately #4
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
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,14 +9,49 @@ end | |
|
||
-- Save the areas table to a file | ||
function areas:save() | ||
local datastr = minetest.write_json(self.areas, true) | ||
-- HACK: Add the version code at the end so that areas can be downgraded | ||
-- without issue, minetest.parse_json ignores extra data at the end of the | ||
-- string. | ||
local datastr = minetest.write_json(self.areas, true) .. "\nv2" | ||
if not datastr then | ||
minetest.log("error", "[areas] Failed to serialize area data!") | ||
return | ||
end | ||
return minetest.safe_file_write(self.config.filename, datastr) | ||
end | ||
|
||
local function migrate_by_strings(self) | ||
local migrated = 0 | ||
for _, area in pairs(self.areas) do | ||
-- Search without a pattern (the "true" argument) as it is much faster | ||
local position = area.name:find("\27(T@areas)", 1, true) | ||
if position then | ||
-- Parse the "(by <name>)" suffix and store in the "prev_owner" field | ||
if not area.prev_owner then | ||
area.prev_owner = area.name:match("\27%(T@areas%)%(by \27F([A-Za-z0-9_%-]-)\27E%)\27E$") | ||
end | ||
|
||
-- Remove the translation escape sequence from the area name | ||
area.name = area.name:sub(1, position - 1):gsub(" $", "") | ||
|
||
migrated = migrated + 1 | ||
end | ||
|
||
-- Remove broken by strings | ||
position = area.name:find(" (by ", 1, true) | ||
if position then | ||
area.name = area.name:sub(1, position - 1) | ||
end | ||
end | ||
|
||
if migrated > 0 then | ||
minetest.log("action", "[areas] Migrated " .. migrated .. | ||
" \"(by <player>)\" strings in area names") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
self:save() | ||
end | ||
end | ||
|
||
-- Load the areas table from the save file | ||
function areas:load() | ||
local file, err = io.open(self.config.filename, "r") | ||
|
@@ -25,7 +60,12 @@ function areas:load() | |
return err | ||
end | ||
local data = file:read("*a") | ||
local need_migration = true | ||
if data:sub(1, 1) == "[" then | ||
if data:sub(-3) == "\nv2" then | ||
data = data:sub(1, -4) | ||
need_migration = false | ||
end | ||
self.areas, err = minetest.parse_json(data) | ||
else | ||
self.areas, err = minetest.deserialize(data) | ||
|
@@ -38,6 +78,9 @@ function areas:load() | |
tostring(err)) | ||
end | ||
file:close() | ||
if need_migration then | ||
migrate_by_strings(self) | ||
end | ||
self:populateStore() | ||
end | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.