You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: manual/content/glossary.html
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -502,6 +502,10 @@ <h2 id="S">S</h2>
502
502
<dt>Spawn</dt>
503
503
<dd>As a verb, it means "to make appear". When an object is created and placed into the game world, it is said that it has "spawned". As a noun, it refers to any object created by the current object.</dd>
504
504
</dl>
505
+
<dlid="spatial-navigation">
506
+
<dt>Spatial navigation</dt>
507
+
<dd><ahref="https://en.wikipedia.org/wiki/Spatial_navigation">Spatial navigation</a> is when the user navigates in a menu, by focusing onto different items by inputting directions, as opposed to using the mouse to go to the items directly.</dd>
508
+
</dl>
505
509
<dlid="spike">
506
510
<dt>Spike</dt>
507
511
<dd>Spike damage is a special type of damage that only happens in retaliation. When an <ahref="#object">object</a> is hurt, if it has spike damage configured, it will automatically hurt its attacker as well. Another type of spike damage happens when a Pikmin is swallowed; this allows White Pikmin to cause some damage to their predators.</dd>
Copy file name to clipboardExpand all lines: manual/content/history.html
+4-10Lines changed: 4 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -34,29 +34,23 @@ <h2 id="roadmap">Roadmap</h2>
34
34
<p>Many more features, content, and tweaks are still planned, but the following is a general outline of what major things still need to be finished, as well as a rough idea of what versions will contain what.</p>
Copy file name to clipboardExpand all lines: source/documents/misc_info.txt
+23-25Lines changed: 23 additions & 25 deletions
Original file line number
Diff line number
Diff line change
@@ -460,16 +460,35 @@ Procedure for every version release
460
460
Particularly the update's version number, release day, and nickname
461
461
Double-check that it's organized, or if it could be sorted differently
462
462
In order for the main changelog file to keep the most recent major/minor version (i.e. revisions are ignored for this count), move older versions to the older changelog document if needed
463
+
Final cleanup
464
+
Pass all code files through AStyle
465
+
for f in $(find . -type f | egrep '.+\.(cpp|h)'); do astyle --options=../documents/astyle.txt -n $f; done
466
+
Code cleanup
467
+
Confirm that no line goes over 80 characters
468
+
Use the helper tool, or run:
469
+
grep -Enr --include="*.cpp" ^.\{81,\}$
470
+
Confirm that all function definitions are sorted alphabetically, and by namespace
471
+
Use the helper tool
472
+
Confirm that all includes are sorted alphabetically
473
+
Use the helper tool
474
+
Confirm that all functions have documentation, and that it has no missing/extra parameters
475
+
Use the helper tool
476
+
Confirm that all function definitions and blocks of includes have two empty lines of space before what comes next
0 commit comments