Skip to content

Commit 0f0fc0e

Browse files
Add player element page
1 parent bbacd43 commit 0f0fc0e

File tree

7 files changed

+68
-7
lines changed

7 files changed

+68
-7
lines changed

articles/official/element/article.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# Element
1+
# MTA Elements
22

33
An **element** is a generic class that can represent almost all in-game entities. The built-in element types are:
44

5-
- TODO
5+
- [player](/player)
6+
- To complete...

web/resources/assets/style.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ hr {
115115
}
116116

117117

118-
.function-type-title {
118+
.floating-right1 {
119119
float: right;
120120
font-size: 1.8em;
121121
padding-top: 2px;

web/resources/element.html

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
<!-- Title -->
3+
<div class="floating-right1" style="color: #ccc;">Element</div>
4+
<h1 style="border-bottom: 3px solid #ccc; padding-bottom: 0.2em;">
5+
{{ element.name }}
6+
<a class="small-fs" href="#" onclick="copyText('{{ element.name }}', 'copy-{{ element.name }}')"><i class="fa-regular fa-copy"></i> <span id="copy-{{ element.name }}"></span> </a>
7+
</h1>
8+
9+
{{ element.description_html }}

web/resources/function.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{% set info_color = '#ccc' %}
77

88
<!-- Title -->
9-
<div class="function-type-title" style="color: {{type_colors[function.type_name]}};">{{ function.type_name|capitalize }} function</div>
9+
<div class="floating-right1" style="color: {{type_colors[function.type_name]}};">{{ function.type_name|capitalize }} function</div>
1010
<h1 style="border-bottom: 3px solid {{type_colors[function.type_name]}}; padding-bottom: 0.2em;">
1111
<span {% if function.disabled %}style="text-decoration: line-through;"{% endif %}>{{ function.name }}</span>
1212
<a class="small-fs" href="#" onclick="copyText('{{ function.name }}', 'copy-{{ function.name }}')"><i class="fa-regular fa-copy"></i> <span id="copy-{{ function.name }}"></span> </a>

web/resources/layout.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
2626

2727
<!-- Custom CSS -->
28-
<link rel="stylesheet" href="/assets/style.css?v=1.9">
28+
<link rel="stylesheet" href="/assets/style.css?v=1.10">
2929
</head>
3030
<body>
3131
<nav id="mta-global-navbar">

web/resources/navigation.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,5 @@
4141
functions:
4242
path: Element
4343
type: shared
44+
- name: MTA Elements
45+
path_html: "/element"

web/scripts/builder.py

+51-2
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,31 @@ def load_schemas(self):
5555
except Exception as e:
5656
raise WikiBuilderError(f'Error loading schemas: {e}')
5757

58+
def parse_elements(self):
59+
self.elements = []
60+
61+
for root, _, files in os.walk(os.path.join(DOCS_REPO_PATH, 'elements')):
62+
for filename in files:
63+
if filename.endswith('.yaml'):
64+
file_path = os.path.join(root, filename)
65+
try:
66+
element = utils.load_yaml(file_path)
67+
68+
element['real_path'] = file_path
69+
element['description_html'] = utils.to_html(element['description'])
70+
71+
self.elements.append(element)
72+
except Exception as e:
73+
self.logger.exception(e)
74+
raise WikiBuilderError(f'Error loading element {file_path}')
75+
76+
def parse_events(self):
77+
pass
78+
5879
def parse_functions(self):
59-
doc_folder = os.path.join(DOCS_REPO_PATH, 'functions')
6080
self.functions = []
6181

62-
for root, _, files in os.walk(doc_folder):
82+
for root, _, files in os.walk(os.path.join(DOCS_REPO_PATH, 'functions')):
6383
for filename in files:
6484
if filename.endswith('.yaml'):
6585
file_path = os.path.join(root, filename)
@@ -320,6 +340,23 @@ def render_page(self, title, content):
320340
navigation = self.navigation,
321341
content = content
322342
)
343+
344+
def create_element_page(self, element):
345+
element_template = self.input_env.get_template('element.html')
346+
html_content = self.render_page(element['name'], element_template.render(element=element))
347+
348+
web_path = f"/{element['name']}/"
349+
element_folder = OUTPUT_HTML_PATH + web_path
350+
351+
Path(element_folder).mkdir(parents=True, exist_ok=True)
352+
353+
output_path = os.path.join(element_folder, 'index.html')
354+
with open(output_path, 'w') as html_file:
355+
html_file.write(html_content)
356+
357+
element["path_html"] = web_path
358+
359+
self.logger.info(f"Generated {output_path} for element {element['name']}")
323360

324361
def create_function_page(self, function):
325362
function_template = self.input_env.get_template('function.html')
@@ -507,11 +544,21 @@ def create_item(item):
507544
create_item(subitem)
508545
else:
509546
create_item(item)
547+
548+
# Populate see_also for functions
549+
self.generate_function_relations()
550+
551+
# Populate see_also for elements
552+
# self.generate_element_relations()
510553

511554
# Create function pages
512555
for function in self.functions:
513556
self.create_function_page(function)
514557

558+
# Create element pages
559+
for element in self.elements:
560+
self.create_element_page(element)
561+
515562
# Other articles
516563
self.create_article('privacy')
517564

@@ -541,6 +588,8 @@ def generate_wiki(self):
541588
self.load_schemas()
542589

543590
self.parse_functions()
591+
self.parse_events()
592+
self.parse_elements()
544593
self.parse_version()
545594

546595
self.create_pages()

0 commit comments

Comments
 (0)