You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
2.7 KiB
Python

3 weeks ago
import datetime,os
import log,skel,tcgcore,variables
3 weeks ago
def tradegen(colour=False):
3 weeks ago
if not os.path.isdir("build/trade"):
os.mkdir("build/trade")
if colour:
if not os.path.isdir("build/trade/" + colour):
os.mkdir("build/trade/" + colour)
thefile = "build/trade/" + colour + "/index.html"
else:
thefile = "build/trade/index.html"
if os.path.exists(thefile):
os.remove(thefile)
3 weeks ago
skel.headerwrite(thefile,"trade")
content = open(thefile,"a")
content.write("<h1>available for trade</h1>\n<p>")
if colour:
content.write("Filtered to <b>")
if colour == "gray":
if variables.british:
content.write("grey")
else:
content.write("gray")
else:
content.write(colour)
content.write("</b>. <a href=\"/trade\">Show all</a>")
else:
content.write("Filter: <a href=\"/trade/red\" title=\"red\">🔴</a> <a href=\"/trade/orange\" title=\"orange\">🟠</a> <a href=\"/trade/yellow\" title=\"yellow\">🟡</a> <a href=\"/trade/green\" title=\"green\">🟢</a> <a href=\"/trade/blue\" title=\"blue\">🔵</a> <a href=\"/trade/purple\" title=\"purple\">🟣</a> <a href=\"/trade/brown\" title=\"brown\">🟤</a> <a href=\"/trade/gray\" title=\"")
if variables.british:
content.write("grey")
else:
content.write("gray")
content.write("\">⚪</a> <a href=\"/trade/special\" title=\"special\">✨</a> <a href=\"/trade/sig\" title=\"sig\">✍</a>")
content.write("</p>\n<p>")
3 weeks ago
for card in tcgcore.ownedcards():
if card[0:4] != "sig_":
if colour:
if not tcgcore.collecting(card[:-2]):
if tcgcore.cardtype(card) == colour:
content.write(tcgcore.printcard(card))
else:
if not tcgcore.collecting(card[:-2]):
content.write(tcgcore.printcard(card))
siglist = []
for card in tcgcore.ownedcards():
if card == "sig_" + variables.name.lower():
siglist.append(card)
if variables.keepsig == True:
siglist.remove(siglist[0])
if colour:
if colour == "sig":
for sig in siglist:
content.write(tcgcore.printcard(sig))
else:
for sig in siglist:
content.write(tcgcore.printcard(sig))
content.write("</p>\n<p>Trade cards <a href=\"" + variables.tradepost + "\">here</a></p>\n")
3 weeks ago
content.close()
skel.footerwrite(thefile)
def tradeall():
3 weeks ago
tradegen()
for type in tcgcore.typelist:
tradegen(type)
tradegen("sig")
if __name__ == "__main__":
tradeall()