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 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101
|
--[[
Copyright (c) 2014 Scott Furry
This file is part of Freedroid
Freedroid is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Freedroid is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Freedroid; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
MA 02111-1307 USA
]]--
-- common routines used for parsing FDRPG data files to wiki pages
local modWPCommon = {}
----------------------------------------
-- Wiki Parsing Common Variables
----------------------------------------
-- Enable flag to use the output from wiki parsing in a pmwiki sandbox\n
-- This flag is meant to be used for debugging purposes
modWPCommon.sandbox = false
-- Enable flag to produce a listing of files that needed to be linked\n
-- This flag is meant to be used for debugging purposes\n
-- Enabling this flag causes the file output_images.txt to be retained\n
-- in the wiki parsing documents output directory.
modWPCommon.filecopyoutput = false
-- Enable flag to produce verbose output\n
-- This flag is meant to be used for debugging purposes\n
-- Flag will result in printout of basic module parsing results.
modWPCommon.verbose = false
-- Enable flag to produce extra verbose output\n
-- This flag is meant to be used for debugging purposes\n
-- Flag will result in printout of detailed module table contents as well as
-- verbose output results.
modWPCommon.doubleverbose = false
-- Values are set in wiki_parse.lua after loading this module\n
-- Table becomes available to all modules that load modWPCommon.
modWPCommon.paths = {
scriptpath = "",
destRootFile = "",
destRootImg = "",
srcroot = "",
srcMap = "",
srcDialog = "",
srcGraphics = ""
}
-- FDRPG data files that are parsed by this script
modWPCommon.datafiles = {
droid = "base/droid_archetypes.dat",
items = "base/item_specs.lua",
npc = "base/npc_specs.lua",
levels = "storyline/act1/levels.dat",
events = "storyline/act1/events.dat",
quests = "storyline/act1/quests.dat",
rotd = "storyline/act1/ReturnOfTux.droids"
}
-- file names of wiki pages resulting from wiki parsing
modWPCommon.outputfilenames = {
droids = "droid-guide",
items = "item-guide",
levels = "level-guide",
npc = "npc-guide",
quests = "quest-guide",
}
-- Text to delineate sections when printing verbose data
modWPCommon.VerboseHeader = string.rep("-",20) .. "\n"
-- Lua text search delimiters for block comments
modWPCommon.LuaBlkCommentStart = "%-%-%[%["
modWPCommon.LuaBlkCommentEnd = "%]%]%-%-"
-- holding variable for image files that need to be linked.
-- each entry - { srcpath = "", destpath = "", destfile = ""}
modWPCommon.FilesToLink = {}
-- variable naming dialogs to ignore
modWPCommon.IgnoreDialog = { "AfterTakeover", "Singularity-Drone", "TestDroid", "FactionDeadBot" }
-- variable naming ROTD.types to ignore (not necessarily characters)
modWPCommon.IgnoredTypes = { "TRM", "GUN" }
-- variable naming factions to ignore
modWPCommon.IgnoreFaction = { "ms", "test" }
----------------------------------------
-- Wiki Parse Processing functions
----------------------------------------
modWPCommon.Process = {}
-- write to a file in bulk
-- [in] filename path/filename destination of data
-- == File path is not multiplatform aware. A "nil" file path redirects output to stdout.
-- [in] writedata data to be written to output stream
-- [in] appending appending to existing file
function modWPCommon.Process.DataToFile( filename, writedata, appending )
local writemode = ""
if (appending) then
writemode = "a"
else
writemode = "w"
end
if (filename ~= nil) then
local filedata = io.open(filename, writemode)
if (filedata == nil) then
io.stderr:write("error - file " .. filename .. ". Unable to open file for writing. Exiting Script\n")
os.exit(1)
else
filedata:write(writedata)
assert(filedata:close())
end
else
io.stdout:write(writedata)
end
end
-- parse a text file into a table line-by-line (without carriage returns)
-- each line of data is placed into its own table element.
-- [in] filename path/filename of file to read
-- [ret] table with each element being a line of text read from file
function modWPCommon.Process.FileToLines( filename )
local filedata = io.open(filename,"r")
local lines = {}
if (filedata == nil) then
io.stderr:write("error - file " .. filename .. ". Unable to open file for reading. Exiting Script\n")
os.exit(1)
else
for line in filedata:lines() do
lines[#lines + 1] = line
end
end
if ((modWPCommon.verbose) or (modWPCommon.doubleverbose)) then
io.stdout:write(filename .. " linecount: " .. #lines .. "\n")
end
return lines
end
-- parse/preprocess a lua file
-- Function reads a lua file in bulk. Preprocessing occurs to remove gettext markers.
-- The entire file is then loaded into memory. Use dofile() on the returned chunk to execute.
-- [in] filename path/filename of file to read
-- [ret] lua chunk
function modWPCommon.Process.FileToChunk( filename )
local filedata = io.open(filename,"r")
local lines = {}
local chunk = ""
if (filedata == nil) then
io.stderr:write("error - file " .. filename .. ". Unable to open file for reading. Exiting Script\n")
os.exit(1)
else
local pattern_marker_quote = "_\""
local patter_marker_block = "_%[%["
for line in filedata:lines() do
local text = line:gsub(pattern_marker_quote, "\"")
text = text:gsub(patter_marker_block,"[[")
lines[#lines + 1] = text
end
end
if ((modWPCommon.verbose) or (modWPCommon.doubleverbose)) then
io.stdout:write(filename .. " linecount: " .. #lines .. "\n")
end
for key, line in pairs(lines)do
chunk = chunk .. line .. "\n"
end
return chunk
end
-- search for text value in table. If value not found insert to table
-- [in] tablename adding data to this table
-- [in] textToAdd adding this text to table
function modWPCommon.Process.InsertToNoKeyTable( tablename, textToAdd )
if (( tablename == nil)
or ( type(tablename) ~= 'table' )) then
return
end
if (( textToAdd == nil )
or ( type(textToAdd) ~= 'string' )
or ( textToAdd:len() <= 0 )) then
return
end
local value = select(1,modWPCommon.Extract.GetTableItem( tablename, nil, textToAdd ))
if ( value == nil ) then
table.insert( tablename, textToAdd )
end
end
-- printout contents of lua table ( recursive function )
-- see http://lua-users.org/wiki/TableSerialization
-- [in] tt table to parse
-- [in] indent amount of indentation for this iteration (default 0)
-- [in] done boolean to indicate completion of processing table
function modWPCommon.Process.TblPrint( tt, indent, done , headlabel)
done = done or {}
indent = indent or 0
if ( headlabel ~= nil ) then
io.stdout:write(modWPCommon.VerboseHeader .. "\n");
io.stdout:write(headlabel .. "\n");
io.stdout:write(modWPCommon.VerboseHeader .. "\n");
end
if type(tt) == "table" then
for key, value in pairs (tt) do
io.stdout:write(string.rep (" ", indent)) -- indent it
if type (value) == "table" and not done [value] then
done [value] = true
io.stdout:write(string.format("[%s] => table\n", tostring (key)));
io.stdout:write(string.rep (" ", indent + 2)) -- indent it
io.stdout:write("(\n");
modWPCommon.Process.TblPrint (value, indent + 4, done, nil)
io.stdout:write(string.rep (" ", indent + 2)) -- indent it
io.stdout:write(")\n");
else
io.stdout:write(string.format("[%s] => %s\n",tostring(key), tostring(value)))
end
end
io.stdout:write("\n")
else
io.stdout:write(tt .. "\n")
end
end
-- Actions taken to create links to image files
function modWPCommon.Process.FileLinkAction()
local verbosity = ""
if ((modWPCommon.verbose) or (modWPCommon.doubleverbose)) then
verbosity = " 1"
io.stdout:write("# of image files to link: " .. #modWPCommon.FilesToLink .. "\n")
end
local copytext = modWPCommon.paths.destRootFile .. "output_images.txt"
local output = ""
for key,item in pairs(modWPCommon.FilesToLink)do
local text = item.srcpath .. "\t\t" .. item.destpath .. item.destfile .. "\n"
output = output .. text
end
modWPCommon.Process.DataToFile(copytext, output)
local cmd = modWPCommon.paths.scriptpath .. "wpImageLink.sh " .. modWPCommon.paths.srcroot .. " "
.. modWPCommon.paths.destRootFile .. verbosity
local fnpopen = assert(io.popen(cmd, 'r'))
local popentext = assert(fnpopen:read('*a'))
io.stdout:write(popentext .. "\n");
if (not modWPCommon.filecopyoutput) then
os.execute( "rm " .. copytext)
end
end
----------------------------------------
-- Wiki Parse Testing functions(text or presence of data)
----------------------------------------
modWPCommon.Test = {}
-- test for presence of file
-- [in] name path and name of file to test(not multiplatform aware)
-- [ret] boolean value if file found (True=yes)
function modWPCommon.Test.FileExists( name )
local returnval = false
local f=io.open(name,"r")
if (f ~= nil) then
io.close(f)
returnval = true
end
return returnval
end
-- test existence of multiple files
-- [in] filenames table of path/filenames to be tested
function modWPCommon.Test.Files( filenames )
for item,filename in pairs(filenames) do
local filetest = modWPCommon.Test.FileExists(filename)
if (filetest == false) then
io.stderr:write("error - file " .. filename .. " not found. Exiting Script\n")
os.exit(1)
else
if ((modWPCommon.verbose) or (modWPCommon.doubleverbose)) then
io.stdout:write(modWPCommon.VerboseHeader)
io.stdout:write("found file " .. filename.. "\n")
end
end
end
end
-- test if directory exists
-- [in] path string of path to test
-- [ret] boolean if directory path found
function modWPCommon.Test.DirExists( path )
local boolreturn = false
local f = io.popen("cd " .. path)
local ff = f:read("*all")
if (not ff:find("ItemNotFoundException")) then
boolreturn = true
end
return boolreturn
end
----------------------------------------
-- Wiki Parse Extraction functions
----------------------------------------
modWPCommon.Extract = {}
-- extract text from string that may contain gettext markers or quotation marks
-- [in] text string of text to be processed
-- == Text may be of the form _"stuff"
-- == function will process text and return the text: stuff
-- [ret] string without gettext or quotation marks
function modWPCommon.Extract.Text( text )
return modWPCommon.Extract.StripQuotes(modWPCommon.Extract.StripGetText(text))
end
-- remove gettext markers from string
-- NOTE: using with stripQuotes() call stripGetText() first as
-- search is dependent on finding underscore/quotation mark combination
-- [in] text string of text to be processed
-- [ret] string without gettext marks
function modWPCommon.Extract.StripGetText( text )
return select( 1, text:gsub("(_)(\")", "%2"))
end
-- remove quotation marks from string
-- Function will look for first and last quotation mark.
-- Any other text outside range is discarded.
-- [in] text string of text to be processed
-- [ret] string without quotation marks
function modWPCommon.Extract.StripQuotes( text )
local temptext = text
local substart = 1
local subend = (-1)
local SearchStart = select( 1, temptext:find("\"", 1))
if (SearchStart ~= nil) then
substart = (SearchStart + 1)
end
local revtext = temptext:reverse()
local SearchEnd = select(1, revtext:find("\"", 1))
if ((SearchEnd ~= nil) and (SearchEnd ~= #temptext)) then
subend = #temptext - SearchEnd
end
return temptext:sub(substart, subend)
end
-- extract arguments in a lua function call
-- Assume lua call of the form func(a, b, c)
-- Function will extract these values into a table.
--
-- NOTE: default is assumed to be text-only arguments.
-- Set nonstrings = true to return non-string arguments also.
-- [in] input text to be examined by function
-- [in] fnName function call to find
-- [in] nonstrings boolean - args may be non-strings
-- [ret] table of arguments found
function modWPCommon.Extract.FuncArgs( input, fnName, nonstrings )
if ( input == nil ) or ( fnName == nil ) then
return nil
end
local markerStart,markerEnd = select(1, input:find(fnName))
if ( markerStart == nil ) then
return nil
end
local altSearch = nonstrings or false
-- ASSume markerEnd contain usable values
local temptext = input:sub((markerEnd + 1))
-- extract text between parentheses
local textextract = ""
for a,b,c in temptext:gmatch("(%()(.-)(%))")do
-- a = "(" b = text c = ")"
textextract = b
end
local foundArgs = {}
if ( altSearch) then
-- input is of form ( var, stuff, "text" ) - extract using different pattern
for w in (textextract .. ","):gmatch("(.-),") do
if ( type(w) == 'string' ) then
local textdata = modWPCommon.Extract.StripQuotes(w)
table.insert(foundArgs, textdata)
else
io.stdout:write(w .. "\n")
table.insert(foundArgs, w)
end
end
else
-- input is of form ( "stuff", "text" ) - extract these text
for w in (textextract .. ","):gmatch("\"(.-)\",") do
if ( w:len() > 0 ) then
table.insert(foundArgs, w)
end
end
end -- alternate searching
return foundArgs
end
-- find and extract text
-- [in] text string of text to be examined
-- [in] searchPattern search text for this pattern
-- [in] ExtractPattern use this pattern to extract from text
-- [ret] extracted value
function modWPCommon.Extract.SearchText( text, searchPattern, ExtractPattern )
local retValue = nil
local asnumber = false
if (( text == nil ) or ( searchPattern == nil ) or ( ExtractPattern == nil )) then
return retValue
end
if ( ExtractPattern:find("%%d") ~= nil ) then
asnumber = true
end
local patternstart, patternend = text:find(searchPattern)
if (( patternstart ~= nil ) and ( patternstart >= 1 )) then
if (( ExtractPattern == "[EOL]" ) or ( ExtractPattern == "[TEXT]" )) then
if ( ExtractPattern == "[EOL]" ) then
retValue = text:sub((patternend + 1), -1)
else
retValue = text:sub((patternstart), patternend)
end
elseif ( ExtractPattern == "[MATCH]" ) then
local subsearch = text:sub( patternstart, patternend )
retValue = subsearch:match( searchPattern )
else
local subsearch = text:sub( patternstart, patternend )
retValue = subsearch:sub(subsearch:find(ExtractPattern))
end
end
if ( retValue ~= nil ) then
if ( asnumber ) then
retValue = tonumber(retValue)
else
retValue = modWPCommon.Extract.Text(retValue)
end
end
return retValue
end
-- read a lua table of strings and return a text string of contents
-- [in] tablearray table of strings to read and converted to text
-- [in] itemsperline number of data elements per line of text (default 10)
-- [ret] data from table as string with embedded carriage returns
function modWPCommon.Extract.OneDTableToString( tablearray, itemsperline, separator )
local str = ""
local limit = itemsperline or 10
local sep = " "
if ( separator ~= nil ) then
sep = separator
end
local itemcount = 0
for key,value in pairs(tablearray) do
if (key > 1) then
str = str .. sep .. tostring(value)
else
str = tostring(value)
end
itemcount = itemcount + 1
if (itemcount > limit) then
str = str .. "\n"
itemcount = 1
end
end
return str
end
-- perform a deep copy of a table(table structure and values)
-- use deep copy to copy table AND default values
-- [in] orig original table to be copied
-- [ret] duplicate of original table
function modWPCommon.Extract.TblDeepCopy( orig )
local orig_type = type(orig)
local copy
if orig_type == 'table' then
copy = {}
for orig_key, orig_value in next, orig, nil do
copy[modWPCommon.Extract.TblDeepCopy(orig_key)] = modWPCommon.Extract.TblDeepCopy(orig_value)
end
setmetatable(copy, modWPCommon.Extract.TblDeepCopy(getmetatable(orig)))
else -- number, string, boolean, etc
copy = orig
end
return copy
end
-- tokenize a string based on a pattern
-- see: http://lua-users.org/wiki/SplitJoin
-- section on page "Function: Split a string with a pattern, Take Two"
-- [in] pString string to be split
-- [in] pPattern pattern to be used for splitting
-- [in] pProcess boolean - true = process strings with extractText()
-- [ret] table of values extracted from string
function modWPCommon.Extract.Split(pString, pPattern, pProcess )
local returnTable = {}
local fpat = "(.-)" .. pPattern
local last_end = 1
local s, e, cap = pString:find(fpat, 1)
local extracttext = pProcess or false
while s do
if s ~= 1 or cap ~= "" then
if (extracttext) then
cap = modWPCommon.Extract.Text(cap)
end
table.insert(returnTable,cap)
end
last_end = e+1
s, e, cap = pString:find(fpat, last_end)
end
if last_end <= #pString then
cap = pString:sub(last_end)
if (extracttext) then
cap = modWPCommon.Extract.Text(cap)
end
table.insert(returnTable, cap)
end
return returnTable
end
-- retrieve table element for a given id
-- [in] tablename table used to search for id and retrieve value
-- [in] keyvalue table key used to compare with idvalue
-- [in] idvalue use the var to id table item to retrieve
-- [ret] tablename["keyvalue"] item or nil
-- [ret] index value in tablename where item is found or nil
function modWPCommon.Extract.GetTableItem(tablename, keyvalue, idvalue )
local retItem = nil
local useKeyValue = false
local foundIndex = -1
if ( tablename == nil ) then
return retItem
end
if (( idvalue == nil ) or ( type(idvalue) ~= 'string' ) or ( idvalue:len() <= 0 )) then
return retItem
end
if ((keyvalue == nil) or ( type(keyvalue) ~= 'string' ) or ( keyvalue:len() <= 0 )) then
useKeyValue = false
else
useKeyValue = true
end
for key, element in pairs(tablename) do
if ( useKeyValue ) then
if ( element[keyvalue] == idvalue ) then
foundIndex = key
break
end -- found id in array
else
if ( element == idvalue ) then
foundIndex = key
break
end
end
end -- loop through table
if ( foundIndex > 0 ) then
retItem = tablename[foundIndex]
end
return retItem, foundIndex
end
----------------------------------------
-- Wiki Variables and functions
----------------------------------------
modWPCommon.Wiki = {}
-- url to FDRPG Droid wiki images
modWPCommon.Wiki.URL_ImgDroid = "/images/droids/"
-- url to FDRPG Droid wiki images
modWPCommon.Wiki.URL_ImgItems = "Attach:Items./"
-- url to FDRPG git repo on sourceforge
modWPCommon.Wiki.URL_Git = "https://codeberg.org/freedroid/freedroid-src/src/branch/master/"
modWPCommon.Wiki.markMapping = false
modWPCommon.Wiki.tabOutput = 0
function modWPCommon.Wiki.StartMapping()
modWPCommon.Wiki.markMapping = true
modWPCommon.Wiki.tabOutput = modWPCommon.Wiki.tabOutput + 1
end
function modWPCommon.Wiki.EndMapping()
modWPCommon.Wiki.tabOutput = modWPCommon.Wiki.tabOutput - 1
end
function modWPCommon.Wiki.StartSequence()
modWPCommon.Wiki.tabOutput = modWPCommon.Wiki.tabOutput + 1
end
function modWPCommon.Wiki.EndSequence()
modWPCommon.Wiki.tabOutput = modWPCommon.Wiki.tabOutput - 1
end
function modWPCommon.Wiki.EscapeString(text)
local escaped = text:gsub("<", "<")
escaped = escaped:gsub(">", ">")
escaped = escaped:gsub('"', """)
escaped = escaped:gsub("'", "'")
escaped = escaped:gsub("\n", "<br/>")
return escaped
end
function modWPCommon.Wiki.AddAttrValue(value)
if type(value) == "boolean" then
return value and '"true"' or '"false"'
elseif type(value) == "string" then
return '"' .. modWPCommon.Wiki.EscapeString(value) .. '"'
end
return value
end
function modWPCommon.Wiki.AddAttrArray( name, value )
local text = string.rep(" ", modWPCommon.Wiki.tabOutput - 1)
if modWPCommon.Wiki.markMapping then
text = text .. " - "
modWPCommon.Wiki.markMapping = false
else
text = text .. " "
end
if name then
text = text .. string.gsub(string.lower(name), " ", "_") .. ": "
end
text = text .. "[ "
if value then
for k,v in ipairs(value) do
text = text .. modWPCommon.Wiki.AddAttrValue(v)
if k ~= #value then
text = text .. ", "
end
end
end
text = text .. " ]"
return text
end
function modWPCommon.Wiki.AddAttr( name, value )
local text = string.rep(" ", modWPCommon.Wiki.tabOutput - 1)
if modWPCommon.Wiki.markMapping then
text = text .. " - "
modWPCommon.Wiki.markMapping = false
else
text = text .. " "
end
if name then
text = text .. string.gsub(string.lower(name), " ", "_") .. ": "
end
if value then
if type(value) == 'table' then
text = text .. "\n"
for k,v in ipairs(value) do
for i=1,modWPCommon.Wiki.tabOutput do
text = text .. " "
end
text = text .. " - " .. modWPCommon.Wiki.AddAttrValue(v)
if k ~= #value then
text = text .. "\n"
end
end
else
text = text .. modWPCommon.Wiki.AddAttrValue(value or "")
end
end
return text
end
-- page setup
----------------------------------------
-- template for wiki page content
-- name, time, and text data is populated in the calling module\n
modWPCommon.Wiki.Header = {
version = "version=pmwiki-2.2.30 ordered=1 urlencoded=1",
charset = "\ncharset=ISO-8859-1",
author = "\nauthor=buildbot",
csum = "\ncsum=autobuild-generated",
name = "\nname=",
text = "\ntext=",
ctime = "\ntime="
}
-- text used to indicate wiki page summary
function modWPCommon.Wiki.PageSummary( text )
if ( text == nil ) then
text = ""
end
return "(:Summary: " .. text .. ":)"
end
-- process wiki formatted data and create wiki page
-- [in] filename filename of wiki page
-- [in] wikitext contents of wiki page [each table entry is a line of text]
-- [ret] string entire wiki page (header and content)
function modWPCommon.Wiki.PageProcess( filename, wikitext )
local pagetext = ""
local linefeed = ""
if (modWPCommon.sandbox) then
-- debug/sandbox
linefeed = "\n"
else
-- production
linefeed = "%0a"
end
pagetext = linefeed
for k,text in ipairs(wikitext) do
if ( #text > 0 ) then
if ( modWPCommon.sandbox ) then
pagetext = pagetext .. text .. linefeed
else
pagetext = pagetext .. modWPCommon.Wiki.WikifyText(text) .. linefeed
end
end
end
-- pmwiki page header data
local wikihead = modWPCommon.Extract.TblDeepCopy(modWPCommon.Wiki.Header)
wikihead.name = wikihead.name .. filename
wikihead.ctime = wikihead.ctime .. tostring(os.time())
-- write wiki data object to string
local writedata = wikihead.version ..
wikihead.charset ..
wikihead.author ..
wikihead.csum ..
wikihead.name ..
wikihead.text .. pagetext ..
wikihead.ctime
return writedata
end
-- wiki text to display warning to not edit page
-- [in] wikitext contents of wiki page [each table entry is a line of text]
-- [ret] page contents with new text appended
function modWPCommon.Wiki.WarnAutoGen( wikitext )
local text = {}
text[#text + 1] = modWPCommon.Wiki.CommentStart .. string.rep("=",40) .. modWPCommon.Wiki.CommentEnd
text[#text + 1] = modWPCommon.Wiki.CommentStart .. modWPCommon.Wiki.CommentEnd
text[#text + 1] = modWPCommon.Wiki.CommentStart .. "WARNING" .. modWPCommon.Wiki.CommentEnd
text[#text + 1] = modWPCommon.Wiki.CommentStart .. "DO NOT EDIT PAGE - Page contents are autogenerated from source files." .. modWPCommon.Wiki.CommentEnd
text[#text + 1] = modWPCommon.Wiki.CommentStart .. "Edits will not be preserved when page contents are regenerated. " .. modWPCommon.Wiki.CommentEnd
text[#text + 1] = modWPCommon.Wiki.CommentStart .. modWPCommon.Wiki.CommentEnd
text[#text + 1] = modWPCommon.Wiki.CommentStart .. string.rep("=",40) .. modWPCommon.Wiki.CommentEnd
return modWPCommon.Wiki.PageAppend( wikitext, text )
end
-- wiki text to display warning page contains spoilers
-- [in] wikitext contents of wiki page [each table entry is a line of text]
-- [ret] page contents with new text appended
function modWPCommon.Wiki.WarnSpoil( wikitext )
local text = {}
text[#text + 1] = modWPCommon.Wiki.LineSep
local line = modWPCommon.Wiki.TextColour("WARNING" ,modWPCommon.Wiki.ColourWarn)
line = modWPCommon.Wiki.TextEmbed(line, "boldemphasis")
text[#text + 1] = modWPCommon.Wiki.HeaderLevel(4) .. line
line = modWPCommon.Wiki.TextColour("SPOILERS" ,modWPCommon.Wiki.ColourWarn)
line = line .. " - Page may contain spoilers about the game."
text[#text + 1] = modWPCommon.Wiki.TextEmbed(line, "textsmall")
text[#text + 1] = modWPCommon.Wiki.LineSep
return modWPCommon.Wiki.PageAppend( wikitext, text )
end
-- markers
----------------------------------------
-- wiki header level format
-- [in] level header level to display
function modWPCommon.Wiki.HeaderLevel( level )
local retText = ""
if (( level >= 1 ) and ( level <= 8 )) then
retText = string.rep("!",level) .. " "
end
return retText
end
-- wiki markup to denote colour used for warning text
modWPCommon.Wiki.ColourWarn = "red"
-- wiki markup to denote colour used for warning text
modWPCommon.Wiki.ColourCaution = "#ff7f00"
-- wiki markup to denote end of wiki colour markup
modWPCommon.Wiki.ColourEnd = "%%"
-- text used to have wiki page display a separation line
modWPCommon.Wiki.LineSep = string.rep("-",4)
-- text used to have wiki page insert end of line linebreak
modWPCommon.Wiki.LineBreakEnd = string.rep("\\",2)
-- text used to have wiki page force line break and clear float settings
modWPCommon.Wiki.ForceBreak = "[[<<]]"
-- text to separate label from data
modWPCommon.Wiki.Separator = ": "
-- text used for List Item on wiki pages
modWPCommon.Wiki.LI = "* "
-- text used for wiki hyperlink
modWPCommon.Wiki.HLink = "#"
-- paired elements
----------------------------------------
-- text used to start display of small text
modWPCommon.Wiki.TextSmallStart = "[-"
-- text used to end display of small text
modWPCommon.Wiki.TextSmallEnd = "-]"
-- text used to start display of large text
modWPCommon.Wiki.TextLargeStart = "[+"
-- text used to end display of large text
modWPCommon.Wiki.TextLargeEnd = "+]"
-- surround text to display emphasized
modWPCommon.Wiki.TextEmph = string.rep("\'",3)
-- surround text to display bolded and emphasized
modWPCommon.Wiki.TextBoldEmph = string.rep("\'",5)
-- text used to start display of comment
modWPCommon.Wiki.CommentStart = "(:comment "
-- text used to end display of comment
modWPCommon.Wiki.CommentEnd = " :)"
-- FRAMES
----------------------------------------
-- text to start wiki right frame
function modWPCommon.Wiki.FrameStartRight( extrastyle )
if ( extrastyle == nil ) then
extrastyle = ""
else
extrastyle = " " .. extrastyle
end
return ">>rframe" .. extrastyle .. "<<"
end
-- text to start wiki left frame
function modWPCommon.Wiki.FrameStartLeft( extrastyle )
if ( extrastyle == nil ) then
extrastyle = ""
else
extrastyle = " " .. extrastyle
end
return ">>lframe" .. extrastyle .. "<<"
end
-- wiki text to terminate frame
modWPCommon.Wiki.FrameEnd = ">><<"
-- TABLES ( NOTE: using structured table )
----------------------------------------
-- text to start a structured table
function modWPCommon.Wiki.TableStart( extrastyle )
if ( extrastyle == nil ) then
extrastyle = ""
else
extrastyle = " " .. extrastyle
end
return "(:table" .. extrastyle .. ":)"
end
-- terminate structured table
modWPCommon.Wiki.TableEnd = "(:tableend:)"
-- enter new structured table row
function modWPCommon.Wiki.TableRowStart( extrastyle )
if ( extrastyle == nil ) then
extrastyle = ""
else
extrastyle = " " .. extrastyle
end
return "(:cellnr" .. extrastyle .. ":)"
end
-- enter data continuing on current structured table row
function modWPCommon.Wiki.TableRowAppend( extrastyle )
if ( extrastyle == nil ) then
extrastyle = ""
else
extrastyle = " " .. extrastyle
end
return "(:cell" .. extrastyle .. ":)"
end
-- text placeholder to separate adjacent, inline tables
modWPCommon.Wiki.TableSeparator = "%lfloat% %%"
-- text entry formatting
----------------------------------------
-- wiki formatting of url data ( incl - anchors )
-- [in] urltext destination url as string
-- [in] displaytext text to display
-- [ret] arguments as wiki formatted url string
function modWPCommon.Wiki.LinkText( urltext, displaytext )
local rettext = ""
local isLink = ((displaytext ~= nil) and ( type(displaytext) == 'string' ) and ( displaytext:len() > 0 ))
if ( isLink ) then
-- hyperlike
rettext = "[" .. displaytext .. "](" .. urltext .. ")"
else
-- anchor
rettext = "[[" .. urltext .. "]]"
end
return rettext
end
-- produce a string of supplied data embedded in wiki formatting
-- [in] displaytext text to be embedded
-- [in] marker displaytext is to embedded with this marker
-- [ret] string in wiki format
function modWPCommon.Wiki.TextEmbed( displaytext, marker )
local retText = displaytext
if (( marker == nil ) or ( type(marker) ~= 'string' ) or ( marker:len() <= 0 )) then
return retText
end
if ( marker == "emphasis" ) then
retText = modWPCommon.Wiki.TextEmph .. displaytext .. modWPCommon.Wiki.TextEmph
elseif ( marker == "boldemphasis" ) then
retText = modWPCommon.Wiki.TextBoldEmph .. displaytext .. modWPCommon.Wiki.TextBoldEmph
elseif ( marker == "textsmall" ) then
retText = modWPCommon.Wiki.TextSmallStart .. displaytext .. modWPCommon.Wiki.TextSmallEnd
elseif ( marker == "textlarge" ) then
retText = modWPCommon.Wiki.TextLargeStart .. displaytext .. modWPCommon.Wiki.TextLargeEnd
end
return retText
end
-- produce a string of supplied data embedded in wiki colour formatting
-- NOTE: colour data should not contain wiki colour markup.
-- == Pass colour data only to this function.
-- [in] displaytext text to be embedded
-- [in] colourdata displaytext is to be displayed with this colour
-- [ret] string in wiki format
function modWPCommon.Wiki.TextColour( displaytext, colourdata )
local retText = displaytext
if (( colourdata == nil ) or ( type(colourdata) ~= 'string' ) or ( colourdata:len() <= 0 )) then
return retText
end
retText = "%" .. colourdata .. "%" .. displaytext .. modWPCommon.Wiki.ColourEnd
return retText
end
-- bulk appending of text lines (in table) to wiki page data
-- [in] pageText current wiki page text
-- [in] data table data of new wiki text
-- [ret] processed wiki page text
function modWPCommon.Wiki.TableGen( tblstyle, tblheader, labelTable, dataTable, labelstyle, datastyle )
local text = {}
text[#text + 1] = modWPCommon.Wiki.TableStart(tblstyle)
if (( tblheader ~= nil ) and ( #tblheader > 0 )) then
local headtext = modWPCommon.Wiki.TextEmbed(tblheader,"emphasis")
headtext = modWPCommon.Wiki.TextEmbed(headtext,"textsmall")
text[#text + 1] = modWPCommon.Wiki.TableRowStart("align=center colspan=2") .. headtext
end
for key, label in pairs(labelTable) do
local datatext = modWPCommon.Wiki.TextEmbed(dataTable[key],"textsmall")
local labeltext = modWPCommon.Wiki.TextEmbed(label,"emphasis")
labeltext = modWPCommon.Wiki.TextEmbed(labeltext,"textsmall")
text[#text + 1] = modWPCommon.Wiki.TableRowStart(labelstyle) .. labeltext
text[#text + 1] = modWPCommon.Wiki.TableRowAppend(datastyle) .. datatext
end
text[#text + 1] = modWPCommon.Wiki.TableEnd
return text
end
-- replace characters in a line of text destined for use in a pmwiki wiki page
-- [in] textstring string to process
-- [ret] processed text
-- == '\%' becomes '\%25' (NOTE: MUST DO FIRST - so as not to affect other char replacements)
-- == '<' becomes '\%3c'\n
-- == '\\n' becomes '\%0a'
function modWPCommon.Wiki.WikifyText( textstring )
local temptext = textstring
temptext = temptext:gsub("%%","%%25")
temptext = temptext:gsub("<","%%3c")
temptext = temptext:gsub("\n","%%0a")
return temptext
end
-- lowercase, remove spaces and punction from link text
-- (more or less compatible with links generated by GF-markdown)
-- also change link text that starts with a number
function modWPCommon.Wiki.WikifyLink( text )
if ( text == nil ) then
return ""
end
local linktext = text:lower()
linktext = linktext:gsub("-"," ") -- will be replaced by a '-' later
linktext = linktext:gsub("(%p)","")
linktext = linktext:gsub("( )","-")
linktext = linktext:gsub("^([0])(.*)","zero%2")
linktext = linktext:gsub("^([1])(.*)","one%2")
linktext = linktext:gsub("^([2])(.*)","two%2")
linktext = linktext:gsub("^([3])(.*)","three%2")
linktext = linktext:gsub("^([4])(.*)","four%2")
linktext = linktext:gsub("^([5])(.*)","five%2")
linktext = linktext:gsub("^([6])(.*)","six%2")
linktext = linktext:gsub("^([7])(.*)","seven%2")
linktext = linktext:gsub("^([8])(.*)","eight%2")
linktext = linktext:gsub("^([9])(.*)","nine%2")
return linktext
end
-- bulk appending of text lines (in table) to wiki page data
-- [in] pageText current wiki page text
-- [in] data table data of new wiki text
-- [ret] processed wiki page text
function modWPCommon.Wiki.PageAppend( pageText, data )
if (( data == nil) or ( type(data) ~= 'table' )) then
return pageText
else
for key, text in pairs(data) do
if ( #text > 1 ) then
pageText[#pageText + 1] = text
end -- line of text has size
end -- for each 'new' text line...
end -- have data
return pageText
end
-- manage portrait to use for wiki entry
-- == function ensures path name used is not a duplicate
-- [in] portraitpathname path and file name to FDRPG graphics file to be used as a portrait.
-- [in] exportfolder path to file to use as wiki resources
-- [in] exportname file to use as wiki resources
-- [in] exportext extension to use for wiki resources
-- [ret] FilesToLink index value were export exportpathname was stored
function modWPCommon.Wiki.ManagePortrait( portraitpathname, exportfolder, exportname, exportext )
local retValue = nil
local exportfilepath = exportname .. exportext
local filelink, fileindex = modWPCommon.Extract.GetTableItem( modWPCommon.FilesToLink,"srcpath", portraitpathname )
if ( filelink == nil ) then
if (modWPCommon.Test.FileExists(portraitpathname)) then
local newpath = { srcpath = portraitpathname,
destpath = exportfolder,
destfile = exportfilepath
}
modWPCommon.FilesToLink[#modWPCommon.FilesToLink + 1] = newpath
retValue = modWPCommon.FilesToLink[#modWPCommon.FilesToLink]
end
else
retValue = filelink
end
return retValue
end
-- make a string for image presentation
-- [in] imageurl url to image path/name
-- [in] alttext alternative text to display
-- [in] extrastyle extra styling markup to be used
-- [ret] wiki text for image presentation
function modWPCommon.Wiki.ImageText( imageurl, alttext, extrastyle )
return "%lfloat " .. extrastyle .. "%" .. imageurl .. "\"" .. alttext .. "\"%%"
end
-- produce wiki format string of information from a lua table
-- Format is currently pmwiki-specific
-- [in] tablename table to process
-- [in] label label to use for display
-- [in] separator string to display between label and data
-- [in] colour colour to use to display text
function modWPCommon.Wiki.TableToWiki( tablename, label, separator, colour )
if ( tablename == nil ) or ( label == nil ) then
-- io.stderr:write("TableToWiki: tablename or label is nil\n")
return nil
end
if ( type(tablename) ~= 'table' ) then
return nil
end
if ( #tablename > 0 ) then
local data = modWPCommon.Wiki.LineBreakEnd .. "\n"
for key, tableitem in pairs(tablename) do
data = data .. "  " .. tableitem
if (key < #tablename) then
data = data .. modWPCommon.Wiki.LineBreakEnd .. "\n"
else
data = data .. "\n"
end
end
data = modWPCommon.Wiki.TextEntry( label, data, separator, colour, false )
return data
end
end
-- consistent formatting of wiki text
-- [in] label label text to display - emphasised on wiki page
-- [in] data data associated with label - normal text
-- [in] separator string to display between label and data
-- [in] colour colour to use for text display
-- [in] addLineBreak boolean - true - add WikiTextLineBreakEnd (default)
-- [ret] string of text in wiki format
function modWPCommon.Wiki.TextEntry( label, data, separator, colour, addLineBreak )
local returntext = nil
local sep = separator or " "
local useLBE = true
if ( addLineBreak ~= nil) then
useLBE = addLineBreak
end
if ( data == nil ) then
-- no data - just a label
returntext = modWPCommon.Wiki.TextColour( label, colour )
returntext = modWPCommon.Wiki.TextEmbed( returntext, "emphasis" )
else
local labeltext = label .. sep
labeltext = modWPCommon.Wiki.TextColour( labeltext, colour )
labeltext = modWPCommon.Wiki.TextEmbed( labeltext, "emphasis" )
local datatext = modWPCommon.Wiki.TextColour( data, colour )
returntext = labeltext .. datatext
end
if ( useLBE ) then
returntext = returntext .. modWPCommon.Wiki.LineBreakEnd
end
return returntext
end
return modWPCommon
|