Skip to content

Commit

Permalink
2.01.91
Browse files Browse the repository at this point in the history
  • Loading branch information
scandum committed Sep 24, 2019
1 parent 6a7bbf5 commit 17978b0
Show file tree
Hide file tree
Showing 47 changed files with 2,917 additions and 1,819 deletions.
5 changes: 3 additions & 2 deletions CREDITS
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ Special thanks to the following

Beta Testers
-----------------------------------------------------------------------------
There are too many to list, but your help has been greatly appreciated. You
are important to TinTin++'s continued success.
Unfortunately (or fortunately) there are too many to list, but your help has
been greatly appreciated. You are invaluable to TinTin++'s continued success.

Thanks!


Modification History
Expand Down
39 changes: 26 additions & 13 deletions TODO
Original file line number Diff line number Diff line change
@@ -1,30 +1,43 @@
* STUFF THAT IS PROBABLY GONNA GET DONE

- add #line background option that prevents automatic session
activation.
- #loop {1} {1000} {cnt} {#var test[$cnt] 123456789-123456789-123456789-123456789-123456789-123456789-123456789-123456789-}

- add syntax highlighting to map data.
- add #map destroy area <area>

- add maze flag for maze handling.
- make format %X take unicode

- more potent long-click handling including held down ticks.

- look into discord api / arachnos

- finish mth true color conversion code

- #bell off option.

- draw example in #help

- make *draw_room more comprehensible

- asciivnum void room display.
- give SUB_FIX its own flag to avoid confusion.

- look into empty symbol setting.
- #detach command.

- easier bit checks for map data
- Improve #draw including 0000 mode.

- Add gtd->cursor_level to avoid saving an already saved cursor position

- add maze flag for maze handling.

- #buffer copy {lines} with strip option. #line strip?

- #buffer copy {lines} with strip option.

- add #line logmode {raw|html|plain} option

- add class specific debug

- add screen draw options to draw lines and boxes.

- Work on VT2020

- massive map / html map drawing.

- add tunnel void utility to #map interface. (covered by #map move tho)

- make #split static and fix wrapping of split line on horizontal shrink.
Expand All @@ -51,8 +64,6 @@

- set packet patch on EOR and GA detection. #config packet patch auto ?

- See if cpu usage of time events can be lowered.

- Add debugger to syntax highlighter, substitution highlighing, 256 color support, and variable expansion.

- allow #class save/load to memory.
Expand Down Expand Up @@ -170,6 +181,8 @@

- http://tintin.sourceforge.net/board/viewtopic.php?p=9934 Strange #map pathdir bug

- Add seconds till execution message to delays and tickers.

--------------------------------------------------------------------------------

* ROADMAP
Expand Down
59 changes: 52 additions & 7 deletions mods/igr.mods
Original file line number Diff line number Diff line change
@@ -1,4 +1,55 @@
Jul 2019 2.02.0
Sep 2019 2.01.92
------------------------------------------------------------------------------

Aug 2019 2.01.91
------------------------------------------------------------------------------
vt100.c Added %2 rows %3 cols arguments to the VT100 SCROLL REGION
event to increase ease of use.

mapper.c Changed #map at to also take an exit for the location.

data.c No longer saving or displaying the priority of triggers which
are set to the default priority.

mapper.c Added #map map <rows> <cols> draw <square> to draw the map at
the given location. This is no real alternative for using #map
offset as #map offset allows mouse map events.

draw.c Added unicode drawing options.

line.c Added #line logmode {html|plain|raw} {argument} Allows you
to execute a command with a temporary logging mode.

mapper.c Now drawing + and - for muds using nu dn eu ed exits.

macro.c Added ^ support to macros to make a macro only trigger at the
start of input. If you want to macro a literal ^ use \^ at
the start of the line. It behaves very similar to the ~ for
color triggers.

mapper.c Improved exit drawing in unicode mode.

draw.c Added #draw command and #help file.

mapper.c Added #map update option to force an update of the vtmap. Keep
in mind the vtmap will only update once every 0.1 seconds.

screen.c Added #screen clear {split|top|bottom} to clear split lines.

config.c Added #config {wordwrap {on|off|number} when a number is given
tintin will wrap at the given width, and will also report the
given width to MUDs over TELNET.

config.c Added #config {telnet} {on|off|debug} which allows enabling or
disabling telnet support. The debug option is the same as
#config {debug telnet} on and will eventually replace it. To
disable debug mode use #config telnet on.

help.c Added #help button

button.c Added #button.

Jul 2019 2.01.90
------------------------------------------------------------------------------
mapper.c Added MAP FOLLOWED MAP event which triggers on map movement.
%0 = new vnum %1 = old vnum %2 = exit name. Keep in mind
Expand Down Expand Up @@ -118,8 +169,6 @@ mapper.c Further improved unicodegraphics mode.

mapper.c Further improved blockgraphics mode.

mapper.c Hidden rooms are now shown to avoid confusion.

mapper.c Added #map color avoid

mapper.c Added #map color hide
Expand Down Expand Up @@ -176,10 +225,6 @@ event.c Changed all MOUSE events to %0=row %1=col %2=-row %3=-row
and because I've repeatedly swapped row and col in VT100 which
can be a tricky bug to track down.

Jul 2019 2.01.9 (beta)
------------------------------------------------------------------------------


session.c Added the 'ats' keyword to the session find routine to return
the active tintin session.

Expand Down
17 changes: 8 additions & 9 deletions src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,14 @@ DEFAULT_FILE_DIR = $(HOME)
FFLAGS= $(F1) $(F6)


OFILES = action.o alias.o files.o help.o highlight.o strhash.o input.o log.o \
main.o misc.o net.o parse.o path.o update.o history.o tab.o vt102.o \
terminal.o session.o function.o text.o substitute.o tick.o memory.o \
math.o split.o debug.o tinexp.o mapper.o tables.o buffer.o prompt.o \
class.o event.o tokenize.o chat.o utf8.o config.o gag.o advertise.o \
list.o forkpty.o cursor.o system.o line.o data.o variable.o macro.o \
msdp.o ssl.o port.o scan.o telopt_client.o screen.o telopt_server.o \
utils.o nest.o show.o mccp.o

OFILES = \
files.o help.o strhash.o input.o main.o misc.o net.o parse.o debug.o \
update.o history.o vt102.o terminal.o text.o memory.o math.o split.o \
system.o mapper.o tables.o buffer.o event.o tokenize.o chat.o utf8.o \
advertise.o list.o forkpty.o utils.o line.o data.o variable.o msdp.o \
port.o scan.o telopt_client.o screen.o cursor.o nest.o show.o mccp.o \
telopt_server.o draw.o log.o path.o session.o class.o config.o ssl.o \
regex.o trigger.o substitute.o

default: all

Expand Down
89 changes: 0 additions & 89 deletions src/action.c

This file was deleted.

Loading

0 comments on commit 17978b0

Please sign in to comment.