Spaces:
Sleeping
Sleeping
File size: 11,176 Bytes
760ff9a |
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 |
import re, fileinput, sys
import utilities as u
import gradio as gr
# HTML section headers
actions_header = """<h4 id="actions">Actions</h4>
"""
cantrips_header = """<h4 id="cantrips">Cantrips</h4>
"""
spells_header = """<h4 id="known spells">Known Spells</h4>
"""
spell_slot_header = """<h4 id="spell slots">Spell Slots</h4>
"""
legendary_actions_header = """<h4 id="legendary actions">Legendary Actions</h4>
"""
# Assigning strings to variables for replacing location of dependencies for the webpage to local static folders
# Path is ../../ for the html files location in output/dated_folder/
break_tag = "<br>"
def build_html_base(
store_name,
store_description,
store_reputation,
store_backstory,
store_sd_prompt,
store_location,
store_type,
store_size,
store_owner,
store_employees,
store_hours,
store_services,
store_specialties,
notable_customers,
store_quests,
store_rumors,
store_inventory,
store_inventory_dict
) :
# Combine the properties that will go on a single line
if mon_subtype != "" :
mon_properties = f"{mon_size}, {mon_type}, {mon_subtype}, {mon_alignment}"
else: mon_properties = f"{mon_size}, {mon_type}, {mon_alignment}"
mon_abilities = parse_abilities_from_text(mon_abilities)
# Template for the page
html_base = f"""<!DOCTYPE html>
<html>
<head>
<link href="../../dependencies/all.css" rel="stylesheet" />
<link href="../../dependencies/css.css?family=Open+Sans:400,300,600,700" rel="stylesheet" type="text/css" />
<link href='../../dependencies/bundle.css' rel='stylesheet' />
<link rel="icon" href="../../dependencies/favicon.ico" type="image/x-icon" />
<title>{mon_name}</title>
</head>
<body>
<link href='../../dependencies/style.css' rel='stylesheet' />
<link href='../../dependencies/5ePHBstyle.css' rel='stylesheet' />
<div class='brewRenderer'>
<style>undefined</style>
<div class='pages'>
<div class='page phb' id='p1' key='0' >
<div className='columnWrapper'>
<div class="block monster frame wide" >
<h4 id="user-monster-name">{mon_name}</h4>
<p><em>{mon_properties}</em>
<p><img class=" " style="width:330px; mix-blend-mode:multiply; border:3px solid black;" src={mon_image_path} alt="image"></p>
<div class="block descriptive">
<h5 id="user-monster-description">{mon_description}</h5>
</div>
<hr>
<dl>
<strong>Armor Class</strong> : {mon_armor_class}
<strong>Hit Points</strong>: {mon_hp} Hit Dice : {mon_hit_dice}
<strong>Speed</strong>: {mon_speed}
</dl>
<hr>
<table>
<thead>
<tr>
<th align=center>STR</th>
<th align=center>DEX</th>
<th align=center>CON</th>
<th align=center>INT</th>
<th align=center>WIS</th>
<th align=center>CHA</th>
</tr>
</thead>
<tbody>
<tr>
<td align=center>{mon_abilities[0]}</td>
<td align=center>{mon_abilities[1]}</td>
<td align=center>{mon_abilities[2]}</td>
<td align=center>{mon_abilities[3]}</td>
<td align=center>{mon_abilities[4]}</td>
<td align=center>{mon_abilities[5]}</td>
</tr>
</tbody>
</table>
<hr>
<strong>Saving Throws</strong> : {mon_saving_throws}
<br><strong>Skills</strong> : {mon_skills}
<br><strong>Resistances</strong> : {mon_damage_resistance}
<br><strong>Senses</strong> : {mon_senses}
<br><strong>Languages</strong> : {mon_languages}
<br><strong>Challenge Rating</strong> : {mon_challenge_rating} ({mon_xp})"""
if mon_actions :
print("Actions : True")
parsed_actions = parse_actions_from_text(mon_actions)
html_file_as_text = f"""{html_base} <hr> {actions_header}
{''.join(parsed_actions)}"""
else:
print("Actions : False")
html_file_as_text = html_base
if mon_cantrips:
print(mon_cantrips)
mon_cantrips = mon_cantrips.replace("Cantrips", '')
mon_cantrips = parse_cantrips_from_text(mon_cantrips)
html_file_as_text = html_file_as_text + cantrips_header + mon_cantrips
if mon_spells :
print(mon_spells)
mon_spells = mon_spells.replace("Known Spells",'')
mon_spells = parse_spells_from_text(mon_spells)
html_file_as_text = html_file_as_text + spells_header + mon_spells
if mon_spell_slots:
print(mon_spell_slots)
mon_spell_slots = mon_spell_slots.replace("Spell Slots", '')
mon_spell_slots = parse_spell_slots_from_text(mon_spell_slots)
html_file_as_text = html_file_as_text + spell_slot_header + mon_spell_slots
else:
print("Spells : False")
if mon_legendary_actions:
print("Legendary Actions : True")
mon_legendary_actions = mon_legendary_actions.replace("Legendary Actions \n\n", '')
mon_legendary_actions = parse_legendary_action_from_text(mon_legendary_actions)
html_file_as_text = html_file_as_text +legendary_actions_header + mon_legendary_actions
else:
print("Legendary Actions : False")
# Open a file path that will receive the processed text
u.gen_file_name(mon_name)
mon_file_path = f"{u.file_name_list[0]}/{u.file_name_list[1]}.html"
with open(mon_file_path, 'w') as clean_html:
clean_html.write(html_file_as_text)
clean_html.close()
# Clear link list and append with new entries
del u.link_list[:]
u.link_list.append(u.file_name_list[0]+'/' + u.file_name_list[1] +'.html')
u.link_list.append(mon_type)
#Passing back a file path that Gradio can access and is local
return mon_file_path
def parse_actions_from_text(edited_text):
html_content = '<dl>'
actions = []
action_entries = edited_text.strip().split('\n\n')
print(action_entries)
for entry in action_entries:
parts = entry.split(';')
action_dict = {
"name": parts[0].split(": ")[1].strip(),
"desc": parts[1].split("Description: ")[1].strip()
}
actions.append(action_dict)
for action in actions:
html_content += f"<dt><em><strong>{action['name']}</strong></em> :</dt><dd>β{action['desc']}</dd>"
html_content += "<br>"
html_content=html_content.rstrip('br')
html_content += '</dl>'
return html_content
def parse_abilities_from_text(abilities):
abilities_list = []
ability_entries = abilities.strip().split('\n')
for entry in ability_entries:
parts = entry.split(':')
ability_value = parts[1]
abilities_list.append(ability_value)
return abilities_list
def parse_cantrips_from_text(cantrips):
html_content = '<dl>'
cantrips_list = []
cantrip_entries = cantrips.strip().split('\n\n')
for entry in cantrip_entries:
parts = entry.split(';')
cantrip_dict = {
"name": parts[0],
"desc": parts[1].split("Description: ")[1].strip()
}
cantrips_list.append(cantrip_dict)
for cantrip in cantrips_list:
html_content += f"<dt><em><strong>{cantrip['name']}</strong></em> :</dt> <dd> β{cantrip['desc']}β</dd>"
html_content += "<br>"
html_content=html_content.rstrip('br')
html_content += '</dl>'
return html_content
def parse_spells_from_text(spells):
html_content = '<dl>'
spells_list = []
spell_entries = spells.strip().split('\n\n')
for entry in spell_entries:
print(f"Spell entry = {entry}")
parts = entry.split(';')
spell_name_part = parts[0]
level_desc_part = parts[1]
# Extract the spell's name (before 'level:')
name = spell_name_part.strip()
# Further split level and description
level_part = level_desc_part.split(", Description:")[0].strip()
description_part = level_desc_part.split(", Description:")[1].strip() if ", Description:" in level_desc_part else ""
# Extract the level (assuming it follows 'Level: ' directly)
level = level_part.replace("Level: ", "").strip()
print(f"Level = {level}")
# Assemble the dictionary for this spell
spell_dict = {
"name": name,
"level": level,
"desc": description_part
}
spells_list.append(spell_dict)
for spell in spells_list:
html_content += f"<dt><em><strong>{spell['name']}</strong></em> :</dt> <dd> βLevel : {spell['level']} {spell['desc']}β</dd>"
html_content += " <br>"
html_content=html_content.rstrip('br')
html_content += '</dl>'
return html_content
def parse_spell_slots_from_text(spell_slots):
html_content = '<dl>'
spell_slots_list = []
spell_slot_entries = spell_slots.strip().split('\n\n')
for entry in spell_slot_entries:
if '0' not in entry:
parts = entry.split(':')
spell_slot_dict = {
"level": parts[0],
"number": parts[1]
}
spell_slots_list.append(spell_slot_dict)
for spell_slot in spell_slots_list:
html_content += f"<dt><em><strong>{spell_slot['level']}</strong></em>:</dt> <dd>β{spell_slot['number']}β</dd>"
html_content += " <br>"
html_content=html_content.rstrip(' br')
html_content += '</dl>'
return html_content
def parse_legendary_action_from_text(legendary_actions):
html_content = '<dl>'
parts = legendary_actions.split('\n\n')
description = parts[0].strip()
description = description + "<br>"
print(f"Description : {description}")
actions_text = parts[1:]
actions = ';'.join(actions_text)
actions = actions.split(';')
print(f"actions : {actions}")
legendary_actions_dict = {
"description": description,
"actions":[]
}
html_content += description
# Process each action
for action in actions:
print(f"action to be parsed: {action}")
action_split = action.split(':')
print(f"Split Action : {action_split}")
legendary_actions_dict['actions'].append({
"name": action_split[0],
"desc": action_split[1]
})
for action in legendary_actions_dict['actions']:
print(action)
html_content += f"<dt><em><strong>{action['name']}</strong></em>:</dt> <dd> β{action['desc']}β</dd>"
html_content += " <br>"
html_content=html_content.rstrip(' br')
html_content += '</dl>'
return html_content
|