Actions

World Map Applet: Difference between revisions

From RuneWiki

No edit summary
No edit summary
Line 21: Line 21:
Click and drag the mouse to pan around the map.
Click and drag the mouse to pan around the map.


Press "'''E'''" to export an image of the full worldmap. It will be saved as a raw RGB image and the image dimensions is in the file name.
Press "'''E'''" to export an image of the full worldmap. In the original source, it was saved as a raw RGB image and the image dimensions was in the file name. If you use my fork it will be exported to PNG for you.

Revision as of 16:47, 5 September 2021

Applet with all the interfaces expanded
World Map export for revision 374's map

Resources

src: https://git.runewiki.org/Old_Engine/WorldMap

jar: https://runewiki.org/archive/worldmap/WorldMap-1.0.jar

data: https://runewiki.org/archive/worldmap/3xx-worldmap.jag

Loading Data

The client attempts to load the latest worldmap.jag archive. If the applet is running as a frame, it will load it locally from the working directory as "worldmap.jag" Otherwise, it will download from an HTTP server (the codebase of the Applet).

When downloading remotely the URL it loads is "worldmap" + sha + ".jag", where sha is half of the SHA signature represented as bytes, and concatenated:

for (int i = 0; i < 10; i++) {
    sha = sha + Signature.sha[k];
}

Functions

Click and drag the mouse to pan around the map.

Press "E" to export an image of the full worldmap. In the original source, it was saved as a raw RGB image and the image dimensions was in the file name. If you use my fork it will be exported to PNG for you.