1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753
|
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<el:level xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://enigma-game.org/schema/level/1 level.xsd" xmlns:el="http://enigma-game.org/schema/level/1">
<el:protected>
<el:info el:type="library">
<el:identity el:title="" el:id="lib/libmap"/>
<el:version el:score="1" el:release="1" el:revision="6" el:status="released"/>
<el:author el:name="Enigma Team" el:email="" el:homepage=""/>
<el:copyright>Copyright © 2008 Enigma Team</el:copyright>
<el:license el:type="GPL v2.0 or above" el:open="true"/>
<el:compatibility el:enigma="1.10">
<el:dependency el:path="lib/liblua" el:id="lib/liblua" el:release="1" el:preload="true"/>
</el:compatibility>
<el:modes el:easy="false" el:single="false" el:network="false"/>
<el:comments>
</el:comments>
<el:score el:easy="-" el:difficult="-"/>
</el:info>
<el:luamain><![CDATA[
---------------------------------------------------------------------
-- libmap provides a metatable for maps, thus some general utilities
-- for working with maps. It includes functions for joining maps
-- in several ways, for queries and manipulation of single entries
-- in the map.
---------------------------------------------------------------------
--
-- libmap provides the following functions:
-- wo:newMap(defaultKey, arg1, arg2)
-- lib.map.concat_horizontally(map1, map2) aka. map1 .. map2
-- lib.map.concat_vertically(map1, map2) aka. map1 + map2
-- lib.map.fuse(arg1, arg2) aka. map1 * map2
-- lib.map.transform(map, op) aka. map ^ op
-- lib.map.get(map, posarg) aka. map[posarg]
-- lib.map.set(map, posarg, value) aka. map[posarg] = value
-- lib.map.covers(map, pos) aka. map:covers(pos)
-- lib.map.defuse(map) aka. map:defuse()
-- lib.map.extend(map, posarg) aka. map:extend(posarg)
-- lib.map.match(map, conditions) aka. map:match(conditions)
-- lib.map.paste(map1, map2, posarg, ignore)
-- aka. map1:paste(map2, posarg, ignore)
-- lib.map.print(map, withXYCounts, left_separator, right_separator)
-- aka. map:print(...)
-- lib.map.replace(map, oldkey, newkey) aka. map:replace(oldkey, newkey)
-- lib.map.replace_outside(map, oldkey, newkey)
-- aka. map:replace_outside(oldkey, newkey)
-- lib.map.set_default_key(map, newkey) aka. map:set_default_key(newkey)
-- lib.map.sub(map, arg1, arg2) aka. map:sub(arg1, arg2)
-- lib.map.trim(map, trimkey) aka. map:trim(trimkey)
-- Please consult the reference manual for details.
--
lib.map = {}
setmetatable(lib.map, getmetatable(lib))
function lib.map.concat_horizontally(map1, map2)
assert_type(map1, "lib.map.concat_horizontally first argument", 2, "map")
assert_type(map2, "lib.map.concat_horizontally second argument", 2, "map")
if string.len(map1.defaultkey) ~= string.len(map2.defaultkey) then
error("lib.map.concat_horizontally: Default keys differ in length.", 2)
end
local result = {}
for y = 1, math.max(map1.height, map2.height) do
result[y] = (rawget(map1, y) or string.rep(map1.defaultkey, map1.width))
.. (rawget(map2, y) or string.rep(map2.defaultkey, map2.width))
end
return wo:newMap(map1.defaultkey, result)
end
function lib.map.concat_vertically(map1, map2)
assert_type(map1, "lib.map.concat_vertically first argument", 2, "map")
assert_type(map2, "lib.map.concat_vertically second argument", 2, "map")
if string.len(map1.defaultkey) ~= string.len(map2.defaultkey) then
error("lib.map.concat_vertically: Default keys differ in length.", 2)
end
local result = {}
for y = 1, map1.height do
result[y] = rawget(map1, y) -- rest of line will be filled by wo:newMap
end
-- As the default key for result will be set to the first
-- default key, we have to attach the missing lines of the
-- second map here now.
local rest = string.rep(map2.defaultkey, math.max(0, map1.width - map2.width))
for y = 1, map2.height do
result[y + map1.height] = rawget(map2, y) .. rest
end
return wo:newMap(map1.defaultkey, result)
end
function lib.map.fuse(map1, map2)
assert_type(map1, "lib.map.fuse first argument", 2, "map", "string")
assert_type(map2, "lib.map.fuse second argument", 2, "map", "string")
assert_bool((etype(map1) == "map") or (etype(map2) == "map"),
"lib.map.fuse: At least one argument must be a map, but both are strings.", 2)
local result = {}
if type(map1) == "string" then
local width = map2.width
local kl = map2.__keylength
for y = 1, map2.height do
local line2 = map2[y]
local line = ""
for x = 1, width*kl, kl do
line = line .. map1 .. string.sub(line2, x, x + kl - 1)
end
result[y] = line
end
return wo:newMap(map1 .. map2.defaultkey, result)
elseif type(map2) == "string" then
local width = map1.width
local kl = map1.__keylength
for y = 1, map1.height do
local line1 = map1[y]
local line = ""
for x = 1, width*kl, kl do
line = line .. string.sub(line1, x, x + kl - 1) .. map2
end
result[y] = line
end
return wo:newMap(map1.defaultkey .. map2, result)
else
local width = math.max(map1.width, map2.width)
local kl1 = map1.__keylength
local kl2 = map2.__keylength
local dk1 = map1.defaultkey
local dk2 = map2.defaultkey
for y = 1, math.max(map1.height, map2.height) do
local line1 = map1[y] or ""
local line2 = map2[y] or ""
local line = ""
for x = 1, width do
local p1 = string.sub(line1, x*kl1 - kl1 + 1, x*kl1)
local p2 = string.sub(line2, x*kl2 - kl2 + 1, x*kl2)
if p1 == "" then
line = line .. dk1
else
line = line .. p1
end
if p2 == "" then
line = line .. dk2
else
line = line .. p2
end
end
result[y] = line
end
return wo:newMap(map1.defaultkey .. map2.defaultkey, result)
end
end
function lib.map.defuse(map)
assert_type(map, "lib.map.defuse first argument", 2, "map")
local kl = rawget(map, "__keylength")
local dk = rawget(map, "__defaultkey")
local premap = {}
for j = 1, kl do
premap[j] = {}
end
for y = 1, rawget(map, "__height") do
local line = map[y]
local j = 1
for x = 1, string.len(line) do
premap[j][y] = (premap[j][y] or "") .. string.sub(line, x, x)
j = (j % kl) + 1
end
end
local result = {}
for j = 1, kl do
result[j] = wo:newMap(string.sub(dk, j, j), premap[j])
end
return result
end
function lib.map.transform(map, op)
assert_type(map, "lib.map.transform first argument", 2, "map")
assert_type(op, "lib.map.transform second argument", 2, "maptransformation")
local w, h = map.width, map.height
local function rot(x, y)
return ({[MAP_IDENT] = {x, y},
[MAP_ROT_CW] = {y, h - 1 - x},
[MAP_ROT_180] = {w - 1 - x, h - 1 - y},
[MAP_ROT_CCW] = {w - 1 - y, x},
[MAP_FLIP_HORIZONTAL] = {w - 1 - x, y},
[MAP_FLIP_VERTICAL] = {x, h - 1 - y},
[MAP_FLIP_SLASH] = {y, x},
[MAP_FLIP_BACKSLASH] = {w - 1 - y, h - 1 - x} })[op]
end
local new_w, new_h = w, h
if (op == MAP_ROT_CW) or (op == MAP_ROT_CCW)
or (op == MAP_FLIP_SLASH) or (op == MAP_FLIP_BACKSLASH) then
new_w, new_h = h, w
end
local result = {}
for y = 1, new_h do
result[y] = ""
for x = 1, new_w do
result[y] = result[y] .. map[rot(x - 1, y - 1)]
end
end
return wo:newMap(map.defaultkey, result)
end
function lib.map.sub(map, origin, arg2, arg3)
-- syntax: map, pos1, pos2
-- map, pos1, width, height
assert_type(map, "lib.map.sub first argument", 2, "map")
assert_type(origin, "lib.map.sub second argument", 2, "position", "valid object", "string", "table")
assert_type(arg2, "lib.map.sub third argument", 2, "position", "valid object", "string", "table", "number")
local pos1, pos2 = origin, arg2
if etype(pos1) ~= "position" then
pos1 = po(pos1)
end
if type(arg2) == "number" then
-- arg2 and arg3 are width and height
assert_type(arg3, "lib.map.sub fourth argument", 2, "number")
pos2 = po(pos1.x + arg2 - 1, pos1.y + arg3 - 1)
elseif etype(arg2) ~= "position" then
pos2 = po(arg2)
end
pos1 = pos1:grid()
pos2 = pos2:grid()
if (pos2.x < pos1.x) or (pos2.y < pos1.y) then
error("lib.map.sub: Rectangular area not cleanly defined (first argument "
.. "is not top left-hand corner).", 2)
end
local result = {}
local kl = map.keylength
for y = pos1.y + 1, pos2.y + 1 do
if y <= map.height then
result[y-pos1.y] = string.sub(rawget(map, y) or "",
pos1.x * kl + 1, (pos2.x + 1) * kl) or ""
end
end
return wo:newMap(rawget(map, "__defaultkey"), result)
end
-- TODO: Speed up.
function lib.map.paste(map1, map2, posarg)
assert_type(map1, "lib.map.paste first argument", 2, "map")
assert_type(map2, "lib.map.paste second argument", 2, "map")
assert_type(posarg, "lib.map.paste third argument", 2, "position", "valid object", "string", "group", "polist", "table")
assert_bool(map1.keylength == map2.keylength, "lib.map.paste: Can't work on maps with different keylengths.", 2)
local postype = etype(posarg)
if postype == "position" then
local kl = rawget(map2, "__keylength")
local dk = rawget(map2, "__defaultkey")
for y = 1, map2.height do
local line = rawget(map2, y)
for x = 1, map2.width do
tile = string.sub(line, kl * (x - 1) + 1, x * kl)
if tile ~= dk then
map1[{posarg.x + x - 1, posarg.y + y - 1}] = tile
end
end
end
elseif postype == "group" then
for obj in posarg do
lib.map.paste(map1, map2, po(obj))
end
elseif postype == "polist" then
for j = 1, #posarg do
lib.map.paste(map1, map2, posarg[j])
end
else
lib.map.paste(map1, map2, po(posarg))
end
end
function lib.map.replace(map, tile1, tile2arg)
assert_type(map, "lib.map.replace first argument", 2, "map")
assert_type(tile1, "lib.map.replace second argument", 2, "string")
assert_type(tile2arg, "lib.map.replace third argument", 2, "nil", "string")
local kl = rawget(map, "__keylength")
local tile2 = tile2arg or rawget(map, "__defaultkey")
if (string.len(tile1) ~= kl) or (string.len(tile2) ~= kl) then
error("lib.map.replace: Tiles do not have the same length as default key.", 2)
end
for y = 1, map.height do
local line = rawget(map, y)
for x = 1, map.width do
tile = string.sub(line, kl * (x - 1) + 1, x * kl)
if tile == tile1 then
map[{x-1, y-1}] = tile2
end
end
end
end
function lib.map.replace_outside(map, tile1, tile2arg)
assert_type(map, "lib.map.replace_outside first argument", 2, "map")
assert_type(tile1, "lib.map.replace_outside second argument", 2, "string")
assert_type(tile2arg, "lib.map.replace_outside third argument", 2, "nil", "string")
local kl = rawget(map, "__keylength")
local tile2 = tile2arg or rawget(map, "__defaultkey")
if (string.len(tile1) ~= kl) or (string.len(tile2) ~= kl) then
error("lib.map.replace_outside: Tiles do not have the same length as default key.", 2)
end
if tile1 == tile2 then
error("lib.map.replace_outside: Old and new tile must be different.", 2)
end
-- mark outside floor fields from the border
local function check_for_outside(x, y)
if string.sub(rawget(map, y), kl * (x - 1) + 1, x * kl) == tile1 then
map[{x-1, y-1}] = tile2
if y > 1 then check_for_outside(x, y - 1) end
if y < map.height then check_for_outside(x, y + 1) end
if x > 1 then check_for_outside(x - 1, y) end
if x < map.width then check_for_outside(x + 1, y) end
end
end
for y = 1, map.height do
check_for_outside(1, y)
check_for_outside(map.width, y)
end
for x = 1, map.width do
check_for_outside(x, 1)
check_for_outside(x, map.height)
end
end
-- TODO: Maybe use assert_type.
function lib.map.match(map, conditionsarg, ...)
assert_type(map, "lib.map.match first argument", 2, "map")
local kl = rawget(map, "__keylength")
local conditions
if #{...} == 0 then
if (type(conditionsarg) == "table")
and ((usertype(conditionsarg[1]) == "position") or (usertype(conditionsarg[1]) == "polist")) then
conditions = lib.lua.deep_copy({conditionsarg})
else
conditions = lib.lua.deep_copy(conditionsarg)
end
else
conditions = lib.lua.deep_copy({conditionsarg, ...})
end
if type(conditions) == "nil" then
conditions = {}
end
if type(conditions) == "string" then
conditions = {{po(0,0), conditions}}
end
if type(conditions) ~= "table" then
error("lib.map.match: Conditions of wrong type " .. type(conditions)
.. ", expected table, string, or nil.", 2)
end
for _, condition in pairs(conditions) do
if (type(condition) ~= "table") or (#condition < 2) then
error("lib.map.match: Wrong type in condition list, expected a table with "
.. "at least two entries.", 2)
end
if (usertype(condition[1]) == "position") then
condition[1] = po(grp()) .. condition[1]
end
if (usertype(condition[1]) ~= "polist") then
error("lib.map.match: Wrong type in condition, expected position or "
.. "position list as first entry.", 2)
end
for j = 2, #condition do
if (type(condition[j]) ~= "string") or (string.len(condition[j]) ~= kl) then
error("lib.map.match: Tile key in condition has wrong type or key length.", 2)
end
end
end
local result = po(grp())
for y = 0, map.height - 1 do
for x = 0, map.width - 1 do
local conditions_fulfilled = true
for _, condition in pairs(conditions) do
for j = 1, #condition[1] do
if conditions_fulfilled then
local ch = map[{x + condition[1][j].x, y + condition[1][j].y}]
local found = false
for j = 2, #condition do
found = found or (condition[j] == ch)
end
conditions_fulfilled = found -- at this point, cf was always true
end
end
end
if conditions_fulfilled then
result = result .. po(x,y)
end
end
end
return result
end
function lib.map.covers(map, pos)
assert_type(map, "lib.map.covers first argument (map)", 2, "map")
assert_type(pos, "lib.map.covers second argument (position)", 2, "position", "table")
if type(pos) == "table" then
return (pos[1] >= 0) and (pos[2] >= 0)
and (pos[1] < map.width) and (pos[2] < map.height)
else
return (pos.x >= 0) and (pos.y >= 0)
and (pos.x < map.width) and (pos.y < map.height)
end
end
function lib.map.get(map, posarg)
assert_type(map, "lib.map.get first argument (map)", 2, "map")
assert_type(posarg, "lib.map.get second argument (index key)", 2, "number", "position",
"object", "group", "polist", "table", "string")
if type(posarg) == "number" then
return rawget(map, posarg)
elseif (usertype(posarg) == "position") or (usertype(posarg) == "object") then
local pos = posarg:grid()
if map:covers(pos) then
local kl = rawget(map, "__keylength")
return string.sub(rawget(map, pos.y + 1), kl * pos.x + 1, (pos.x + 1) * kl)
else
return rawget(map, "__defaultkey")
end
elseif usertype(posarg) == "group" then
local result = {}
for obj in posarg do
table.insert(result, lib.map.get(map, obj))
end
return result
elseif usertype(posarg) == "polist" then
local result = {}
for j = 1, #posarg do
result[j] = lib.map.get(map, posarg[j])
end
return result
elseif type(posarg) == "table" then
if map:covers(posarg) then
local kl = rawget(map, "__keylength")
return string.sub(rawget(map, posarg[2] + 1), kl * posarg[1] + 1, (posarg[1] + 1) * kl)
else
return rawget(map, "__defaultkey")
end
elseif type(posarg) == "string" then
if (posarg == "type") then
return getmetatable(map)._type
elseif (posarg == "width") or (posarg == "height")
or (posarg == "defaultkey") or (posarg == "keylength") then
return rawget(map, "__"..posarg)
else
local pos = po[posarg]
if pos then
return lib.map.get(map, pos)
else
return rawget(map, "__defaultkey")
end
end
end
end
function lib.map.set(map, posarg, value)
assert_type(map, "lib.map.set first argument (map)", 2, "map")
assert_type(posarg, "lib.map.set second argument (index key)", 2, "number", "position",
"object", "group", "polist", "table", "string")
if type(posarg) == "string" then
if (posarg == "type") then
if tostring(value) ~= "map" then
error("lib.map.set: A map is a map is a map is a map, and not a "
.. tostring(value) .. "!", 2)
else
return
end
elseif (posarg == "width") or (posarg == "height") then
error("lib.map.set: Use extend or sub to change the size of a map.", 2)
elseif (posarg == "keylength") then
error("lib.map.set: Can't change keylength without default key.", 2)
elseif (posarg == "defaultkey") then
map:set_default_key(value)
return
else
local pos = po[posarg]
if pos then
lib.map.set(map, pos, value)
else
error("lib.map.set: Named position '" .. posarg .. "' doesn't exist.", 2)
end
end
else
assert_type(value, "lib.map.set third argument (value)", 2, "non-empty string")
local kl = rawget(map, "__keylength")
if string.len(value) ~= kl then
error("lib.map.set: Key must be of the same length as default key "
.."(should be "..kl.. ", is "..string.len(value)..").", 2)
end
if (usertype(posarg) == "position") or (usertype(posarg) == "object") then
local x, y = (posarg:grid()):xy()
assert_bool((x >= 0) and (y >= 0), "lib.map.set: Negative positions are not supported.", 2)
if (x >= rawget(map, "__width")) or (y >= rawget(map, "__height")) then
map:extend({x, y})
end
rawset(map, y + 1,
string.sub(rawget(map, y + 1), 1, x * kl)
.. value
.. string.sub(rawget(map, y + 1), (x + 1) * kl + 1, -1))
elseif usertype(posarg) == "group" then
for obj in posarg do
map:extend(obj)
rawset(map, obj.y + 1,
string.sub(rawget(map, obj.y + 1), 1, obj.x * kl)
.. value
.. string.sub(rawget(map, obj.y + 1), (obj.x + 1) * kl + 1, -1))
end
elseif usertype(posarg) == "polist" then
for j = 1, #posarg do
map:extend(posarg[j])
rawset(map, posarg[j].y + 1,
string.sub(rawget(map, posarg[j].y + 1), 1, posarg[j].x * kl)
.. value
.. string.sub(rawget(map, posarg[j].y + 1), (posarg[j].x + 1) * kl + 1, -1))
end
elseif type(posarg) == "table" then
local x, y = posarg[1], posarg[2]
assert_bool(type(x) == "number", "lib.map.set second argument (position): Conversion to position failed.", 2)
assert_bool(type(y) == "number", "lib.map.set second argument (position): Conversion to position failed.", 2)
assert_bool((x >= 0) and (y >= 0), "lib.map.set: Negative positions are not supported.", 2)
if (x >= rawget(map, "__width")) or (y >= rawget(map, "__height")) then
map:extend({x, y})
end
rawset(map, y + 1,
string.sub(rawget(map, y + 1), 1, x * kl)
.. value
.. string.sub(rawget(map, y + 1), (x + 1) * kl + 1, -1))
end
end
end
function lib.map.extend(map, posarg)
assert_type(map, "lib.map.extend first argument", 2, "map")
assert_type(posarg, "lib.map.extend second argument", 2, "position", "valid object", "string", "table")
local pos = posarg
if etype(pos) ~= "position" then
pos = po(pos)
end
local w, h = rawget(map, "__width"), rawget(map, "__height")
if pos.x >= w then
pos = pos:grid()
local dk = rawget(map, "__defaultkey")
local attach = string.rep(dk, pos.x - w + 1)
for y = 1, h do
rawset(map, y, rawget(map, y) .. attach)
end
w = pos.x + 1
rawset(map, "__width", w)
end
if pos.y >= h then
pos = pos:grid()
local dk = rawget(map, "__defaultkey")
local line = string.rep(dk, w)
for y = h + 1, pos.y + 1 do
rawset(map, y, line)
end
h = pos.y + 1
rawset(map, "__height", h)
end
end
function lib.map.trim(map, trimkeyarg)
assert_type(map, "lib.map.trim first argument", 2, "map")
assert_type(trimkeyarg, "lib.map.trim second argument", 2, "nil", "string")
local border_n = map.height - 1
local border_s = 0
local border_w = map.width - 1
local border_e = 0
local trimkey = trimkeyarg or rawget(map, "__defaultkey")
if string.len(trimkey) ~= rawget(map, "__keylength") then
error("lib.map.trim: Trim key has wrong key length.", 2)
end
for x = 0, map.width - 1 do
for y = 0, map.height - 1 do
if map[{x,y}] ~= trimkey then
border_n = math.min(border_n, y)
border_s = math.max(border_s, y)
border_w = math.min(border_w, x)
border_e = math.max(border_e, x)
end
end
end
if (border_n >= border_s) or (border_w >= border_e) then
return wo:newMap(trimkey)
end
return map:sub(po(border_w, border_n), po(border_e, border_s))
end
function lib.map.print(map, withXYCounts, left_separator, right_separator)
assert_type(map, "lib.map.print first argument (map)", 2, "map")
assert_type(withXYCounts, "lib.map.print second argument (with X-Y-counts)", 2, "nil", "boolean")
assert_type(left_separator, "lib.map.print third argument (left separator)", 2, "nil", "string")
assert_type(right_separator, "lib.map.print fourth argument (right separator)", 2, "nil", "string")
local w, h = map.width, map.height
local kl = rawget(map, "__keylength")
if withXYCounts then
local line = string.rep(" ", kl) .. (left_separator or "")
for x = 0, w - 1 do
line = line .. string.rep(" ", math.max(0, kl - string.len(x)))
.. string.sub(x, math.max(0, string.len(x) - kl) + 1, string.len(x))
end
line = line .. (right_separator or "")
print(line)
end
for y = 0, h - 1 do
local line = ""
if withXYCounts then
line = string.rep(" ", math.max(0, kl - string.len(y)))
.. string.sub(y, math.max(0, string.len(y) - kl) + 1, string.len(y))
end
line = line .. (left_separator or "") .. map[y + 1] .. (right_separator or "")
print(line)
end
end
function lib.map.set_default_key(map, newkey)
assert_type(map, "lib.map.set_default_key first argument", 2, "map")
assert_type(newkey, "lib.map.set_default_key second argument", 2, "non-empty string")
local new_width = map.width * map.keylength / string.len(newkey)
if new_width ~= math.ceil(new_width) then
error("lib.map.set_default_key: Map width doesn't fit to new default key.", 2)
end
rawset(map, "__defaultkey", newkey)
rawset(map, "__keylength", string.len(newkey))
rawset(map, "__width", new_width)
end
lib.map.metatable = {
__concat = lib.map.concat_horizontally,
__add = lib.map.concat_vertically,
__mul = lib.map.fuse,
__pow = lib.map.transform,
__index = lib.map.get,
__newindex = lib.map.set,
_type = "map"
}
wo:_register("newMap",
function(world, defaultKey, arg1, arg2)
local newmap = {}
-- Check arguments, create map if necessary.
assert_type(defaultKey, "wo:newMap first argument (default key)", 2, "non-empty string")
local width = 0
local height = 0
local kl = string.len(defaultKey)
if (type(arg1) == "table") and (type(arg2) == "nil") then
-- Interpret table as map.
for key, entry in pairs(arg1) do
if (type(key) == "number") and (key == math.ceil(key)) and (key > 0) then
height = math.max(height, key)
assert_type(entry, "wo:newMap line " .. key, 2, "string")
local line_width = string.len(entry) / kl
if line_width ~= math.floor(line_width) then
error("newMap: Line " .. key .. " doesn't fit to key length (" .. kl .. ").", 2)
end
width = math.max(width, line_width)
newmap[key] = entry
end
end
-- Now complete the map, make it rectangular.
for y = 1, height do
newmap[y] = newmap[y] or ""
newmap[y] = newmap[y] .. string.rep(defaultKey, width - string.len(newmap[y]) / kl)
end
elseif type(arg1) == "number" and type(arg2) == "number" then
-- Create map from scratch.
assert_type(arg1, "wo:newMap third argument (width)", 2, "positive integer")
assert_type(arg2, "wo:newMap fourth argument (height)", 2, "positive integer")
local line = string.rep(defaultKey, arg1)
for y = 1, arg2 do
newmap[y] = line
end
width = arg1
height = arg2
elseif type(arg1) == "nil" and type(arg2) == "nil" then
-- Create 1x1-map from scratch.
return wo:newMap(defaultKey, 1, 1)
else
error("wo:newMap: Syntax error. Can't understand arguments.", 2)
end
-- Set additional values.
newmap.__width = width
newmap.__height = height
newmap.__defaultkey = defaultKey
newmap.__keylength = string.len(defaultKey)
-- Set methods and finally metatable.
newmap.covers = lib.map.covers
newmap.defuse = lib.map.defuse
newmap.extend = lib.map.extend
newmap.match = lib.map.match
newmap.paste = lib.map.paste
newmap.print = lib.map.print
newmap.replace = lib.map.replace
newmap.replace_outside = lib.map.replace_outside
newmap.set_default_key = lib.map.set_default_key
newmap.sub = lib.map.sub
newmap.trim = lib.map.trim
setmetatable(newmap, lib.map.metatable)
return newmap
end
)
-----------------------------
-- Transformation handling --
-----------------------------
function lib.map.random_transformation()
return MAP_ALL[random(MAP_COUNT)]
end
function lib.map.transformation_inverse(x)
assert_type(x, "lib.map.transformation_inverse first argument", 2, "maptransformation")
return MAP_ALL[({1, 4, 3, 2, 5, 6, 7, 8}) [x.index] ]
end
function lib.map.transformation_compose(x, y)
assert_type(x, "lib.map.transformation_compose first argument", 2, "maptransformation")
assert_type(y, "lib.map.transformation_compose second argument", 2, "maptransformation")
return MAP_ALL[({{1, 2, 3, 4, 5, 6, 7, 8},
{2, 3, 4, 1, 6, 7, 8, 5},
{3, 4, 1, 2, 7, 8, 5, 6},
{4, 1, 2, 3, 8, 5, 6, 7},
{5, 8, 7, 6, 1, 4, 3, 2},
{6, 5, 8, 7, 2, 1, 4, 3},
{7, 6, 5, 8, 3, 2, 1, 4},
{8, 7, 6, 5, 4, 3, 2, 1}}) [x.index] [y.index] ]
end
function lib.map.transformation_power(x, y)
assert_type(x, "lib.map.transformation_power first argument", 2, "maptransformation")
assert_type(y, "lib.map.transformation_power second argument", 2, "maptransformation", "integer")
if type(y) == "number" then
local result = MAP_IDENT
-- Any 4th power of any element is trivial, so we mod by 4.
-- Note that negative powers work as expected.
for j = 1, y % 4 do
result = result * x
end
return result
else
return x*y
end
end
lib.map.transformation_metatable = {
__mul = lib.map.transformation_compose,
__pow = lib.map.transformation_power,
__unm = lib.map.transformation_inverse,
_type = "maptransformation",
}
for _, transformation in ipairs(MAP_ALL) do
setmetatable(transformation, lib.map.transformation_metatable)
end
]]></el:luamain>
<el:i18n>
</el:i18n>
</el:protected>
</el:level>
|