Skip to content

Commit

Permalink
Miscellaneous tiny tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaerzi committed Jun 1, 2017
1 parent ccda669 commit 7c1e805
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 17 deletions.
2 changes: 1 addition & 1 deletion dist/res/config/games/include/specials_doom2.cfg
Expand Up @@ -82,7 +82,7 @@ action_specials

group "Exits"
{
special 124 = "W- Exit (Secret)";
special 124 = "W1 Exit (Secret)";
}

group "Teleports"
Expand Down
3 changes: 2 additions & 1 deletion dist/res/config/games/include/specials_heretic.cfg
Expand Up @@ -185,7 +185,8 @@ action_specials

group "Misc"
{
special 48 = "Scrolling Wall";
special 48 = "Scrolling Wall Left";
special 99 = "Scrolling Wall Right";
}
}
#endif
16 changes: 2 additions & 14 deletions misc/stuff.txt
Expand Up @@ -17,7 +17,6 @@ TODO List ---------------------------------------------------------------

--- Map Editor 3.1 ---
- Checks:
- Mismatching tags
- Invalid sector references
- Add 'rebuild sector' fix option
- Better UDMF property handling, proper support for unknown properties read with the map
Expand All @@ -26,15 +25,12 @@ TODO List ---------------------------------------------------------------

--- Other 3.1 ---
- Look into using wxWebView to show documentation in a tab
- Automatically email stack trace on crash (if possible)


--- Map Editor post-3.1 ---
- 3d mode
- Offsets/scaling copy+paste
- (Z)MAPINFO parsing for sky texture
- Line transparency (udmf+zdoom)
- Slopes preview
- Auto-align Y
- Better vis checking
- 3d floors preview
Expand All @@ -56,14 +52,11 @@ TODO List ---------------------------------------------------------------
- Resource editor:
- Edit entries externally
- Map editor:
- Slopes preview
- Offsets/scaling copy+paste
- (Z)MAPINFO parsing for sky texture
- Line transparency (udmf+zdoom)


--- Editor Features ---
- Generic entry data view (for VERTEXES, LINEDEFS, SIDEDEFS, SECTORS, THINGS, DEMO*, TEXTUREX/PNAMES, ...)
- ANSI screen editor
- Proper font viewer
- 'Cleanup' stuff (unused patches, textures, flats, unneeded entries...)
Expand All @@ -80,17 +73,12 @@ TODO List ---------------------------------------------------------------

--- Text Editor ---
- 'Tabs as Spaces' option
- Better Find+Replace
- Make it a bar rather than popup
- Enter to find next
- Esc to cancel

--- Texture Editor ---
- Make 'grid' size optional
- Snap to grid for dragging patches

--- Gfx Editor ---
- Basic pixel-drawing tools

--- Audio ---

Expand Down Expand Up @@ -143,7 +131,7 @@ Unimplemented Feature Requests ------------------------------------------
- sorting lumps in archive (not just their display)

--- Entry Editing ---
- SBARINFO viewer/editor
- SBARINFO viewer/editor -- SBARINFO is getting deprecated, so maybe not

--- Gfx ---
- Save offset type between sessions
Expand All @@ -153,7 +141,7 @@ Translation dialog:
- Zoom on preview gfx (perhaps in pop-up window?)
- Allow use with truecolour gfx
- Tool for trimming blank space around a graphic.
- Tool for adding blank space to either side as needed to put the x offset right in the center (better for mirrored sprites).
- Tool for adding blank space to either side as needed to put the x offset right in the center -- done as CCMD

Conversion dialog:
- Enter and esc mapped to convert all and skip all
Expand Down
2 changes: 1 addition & 1 deletion src/MainEditor/UI/EntryPanel/AudioEntryPanel.cpp
Expand Up @@ -251,7 +251,7 @@ string AudioEntryPanel::statusString()
string ret = wxEmptyString;
if (hours) ret = S_FMT("%d:%02d:%02d.%03d", hours, minutes, seconds, milliseconds);
else if (minutes) ret = S_FMT("%d:%02d.%03d", minutes, seconds, milliseconds);
else ret = S_FMT("%d:%03d", seconds, milliseconds);
else ret = S_FMT("%d.%03d", seconds, milliseconds);

return ret;
}
Expand Down

0 comments on commit 7c1e805

Please sign in to comment.