User:Zozart/category test: Difference between revisions
(design using category templates) |
TomEdwards (talk | contribs) No edit summary |
||
Line 398: | Line 398: | ||
|} | |} | ||
|} | |} | ||
= Wiki markup with sub-tables = | |||
Based on design #2, but uses a subtable to display the right-hand column instead of relying on <code>rowspan</code>ning. | |||
Problems: | |||
*Holy HTML, batman! I didn't have the patience to get it working in Wiki, sorry to whoever ends up converting it! Using a template system should make it as efficient as Jeff's version. | |||
*Double-width around right column (vis. different colour). Could be fixed by getting rid of the table and faking the cell spacing with divs. | |||
<table width="100%" cellspacing="8px" style="background:#E0E0E0; border:lightgray 1px solid;"> | |||
<tr width="50%"> | |||
<td style="background:#F5F5F5;padding: 8px; border:#D3D3D3 1px solid;"> | |||
== Getting Started == | |||
* [[Getting_Started|Building your first room in Hammer]] | |||
* [[Introduction to Editing]] | |||
* [[3D and 2D Views|Hammer 3D and 2D Views]] | |||
* [[Leaks Explained]] | |||
* [[Inputs_and_Outputs|Entity Inputs and Outputs]] | |||
* [[Optimization]] | |||
====http://developer.valvesoftware.com/w/images/a/a5/Css.gif '''Counter-Strike: Source==== | |||
* [[Making levels for Counter-Strike: Source]] | |||
* [[How To Develop A Map That Works]] | |||
== Intermediate Topics == | |||
* [[Source Mapping for Half-Life 1 Mappers]] | |||
* [[Grouping and VisGrouping]] | |||
* [[Cubemaps]] | |||
* [[Physics Entity Overview]] | |||
* [[Entity_Hierarchy_%28parenting%29|Entity Hierarchy (parenting)]] | |||
* [[Displacement|Displacement Surfaces (Terrain)]] | |||
* [[Making_3D_Skyboxes|3D Skyboxes]] | |||
* [[Creating_and_Using_Prefabs|Creating and Using Prefabs]] | |||
* [[How to Release A Map]] | |||
====http://developer.valvesoftware.com/w/images/6/6d/Hl2px16.gif Half-Life 2==== | |||
* [[Single-Player Mapping Tips]] | |||
* [[:Category:Regions & Atmospheres|Regions & Atmospheres]] | |||
== Advanced Techniques == | |||
* [[Advanced Lighting]] | |||
* [[Expert compile mode]] | |||
* [[Using Bspzip to Embed Custom Content]] | |||
* [[Creating Level Overviews]] | |||
* [[Filter Applications]] | |||
* [[Mini-mod tutorial]] | |||
====http://developer.valvesoftware.com/w/images/a/a5/Css.gif Counter-Strike: Source==== | |||
* [[Bot Navigation for Counter-Strike:Source|Bot Navigation for Counter-Strike: Source]]</td> | |||
<td style="background:#E0E0E0;width:50%;height:100%;"> | |||
<table cellspacing="8" width="100%" height="100%"> | |||
<tr> | |||
<td style="background:#FBF7EA;padding:8px;border:#D3D3D3 1px solid;"> | |||
== Hammer Editor == | |||
* [[Hammer Editor Documentation]] | |||
* [[Hammer Feature Requests]]</td> | |||
</tr> | |||
<tr> | |||
<td style="background:#FFFFFF;padding:8px;border:#D3D3D3 1px solid;"> | |||
== [[Abstract Mapping]] == | |||
{{abstract mapping ideas}}</td> | |||
</tr> | |||
<tr> | |||
<td style="background:#FBF7EA;padding:8px;border:#D3D3D3 1px solid;"> | |||
== Objects == | |||
* [[List of entities]] | |||
* [[:Category:World Models|Prop Gallery]] | |||
* [[:Category:Items|Items (weapons, pickups)]] | |||
* [[:Category:NPCs|NPCs (monsters, allies, characters)]]</td> | |||
</tr> | |||
<tr> | |||
<td style="background:#FFFFFF;padding:8px;border:#D3D3D3 1px solid;"> | |||
== Troubleshooting == | |||
* [[Troubleshooting Level Design]] | |||
* [[Showbudget|Using the Showbudget Panel]] | |||
* [[Compile Errors]]</td> | |||
</tr> | |||
<tr> | |||
<td style="background:#FBF7EA;padding:8px;border:#D3D3D3 1px solid;"> | |||
== Design Theory == | |||
* [[What makes a good level?]] | |||
* [[Single-Player Mapping Tips]] | |||
* [[Bounce (level design)]] | |||
* [[Loops (level design)]] | |||
* [[Push Gameplay]] | |||
* [[Map Compiling Theory]] | |||
* [[RAD (technical)]]</td> | |||
</tr> | |||
</table> | |||
</td> | |||
</tr> | |||
</table> |
Revision as of 10:21, 1 February 2006
Expanded TomEdwards' two-column layout, integrating some of the features from the Main_Page in order to give it a similar style.
Problems with HTML:
- Mixed HTML and Wiki markup
- Hard to track opening and closing of
<div>
s- More difficult for users to edit
Versions:
- Mixed HTML and Wiki markup
- Wiki-only markup with simple tables
- Wiki-only markup with more complex tables
- Wiki-only markup with dual complex tables
Mixed HTML and Wiki markup
Code using a combination of HTML </div>
tags and Wiki markup.
Wiki markup with simple tables
Only uses Wiki markup, with 2 simple columns.
Wiki markup with complex tables
Uses only Wiki markup, but uses more complex table code to add sections and different color possibilties. Some of the markup could be templated fairly easily.
Wiki markup with dual complex tables, multiple sections and colours
Uses only Wiki markup, but uses more complex table code to add sections and different color possibilties. Some of the markup could be templated fairly easily. As above, uses only Wiki markup and table code. Utilises two nested tables in order to allow independant sections for each column. Each section can be coloured, e.g. the Hammer box (yellow) and the Troubleshooting box (red). Each section also alternates between white and light grey for the background (aside from those boxes with a different colour).
Issues:
- If more sections were added (especially if in the middle), can be confusing to swap around all the background colours.
- Two nested tables could be an issue in the name of simplicity.
Wiki markup with sub-tables
Based on design #2, but uses a subtable to display the right-hand column instead of relying on rowspan
ning.
Problems:
- Holy HTML, batman! I didn't have the patience to get it working in Wiki, sorry to whoever ends up converting it! Using a template system should make it as efficient as Jeff's version.
- Double-width around right column (vis. different colour). Could be fixed by getting rid of the table and faking the cell spacing with divs.
Getting Started
http://developer.valvesoftware.com/w/images/a/a5/Css.gif Counter-Strike: SourceIntermediate Topics
http://developer.valvesoftware.com/w/images/6/6d/Hl2px16.gif Half-Life 2Advanced Techniques
http://developer.valvesoftware.com/w/images/a/a5/Css.gif Counter-Strike: Source |
|