Map Debugger

Tool to help debug TMap and TMapLoader.

Example:

{$I WaspLib/main.simba}
begin
  Map.Setup([EChunk.VARROCK]);
  MapDebugger.Setup(Map.Loader);
  MapDebugger.Show();
end.
../../images/map_debugger.gif

TMapDebugger

Main record used to hold core values of the Map Debugger.


MapDebugger.Show

procedure TMapDebugger.Show();

Shows the MapDebugger form. You must first call TMapDebugger.Setup before calling this.

Example:

MapDebugger.Show();

MapDebugger.Setup

procedure TMapDebugger.Setup(var loader: TMapLoader);

Setup method for the MapDebugger form. A TMapLoader must be passed into this as loader.

Example:

MapDebugger.Setup(@Map.Loader);

MapDebugger variable

Global TMapDebugger variable.