mob/proc/cr_browsermap(zlevel=1,tilesizex=16,tilesizey=16,denytypes[0],windowname="map",browseopt="")
////////Send the map to the mob's browser window
var/filename="crmap[ckey].tmp"
//Display "please wait" message
src << browse("<body bgcolor=black text=white><p align=center>\
<font size=5 face='Verdana'>...please wait...</font></body>","window=[windowname],\
size=[min(world.maxx*16+50,630)]x[min(world.maxy*16+150,450)],[browseopt]")
var/html="<html><body bgcolor=black><table border=0 cellspacing=0 cellpadding=0>"
//If the temp. file exists, delete it
if (fexists(filename)) fdel(filename)
//Display everything in the world
for (var/y=world.maxy,y>=0,y--)
html+="</tr><tr>"
text2file(html,filename)
html=""
sleep(-1)
for (var/x=1,x<=world.maxx,x++)
//Turfs
var/turf/T=locate(x,y,zlevel)
if (!T) continue
var/icon/I=icon(T.icon,T.icon_state)
var/imgstring=dd_replacetext("[T.type]-[T.icon_state]","/","_")
//Movable atoms
/* for (var/atom/movable/A in T)
//Make sure it's allowed to be displayed
var/allowed=1
for (var/X in denytypes)
if (istype(A,X))
allowed=0
break
if (!allowed) continue
if (A.icon) I.Blend(icon(A.icon,A.icon_state,A.dir),ICON_OVERLAY)
imgstring+=dd_replacetext("__[A.type]_[A.icon_state]","/","_")*/
//Output it
src << browse_rsc(I,"[imgstring].dmi")
html+="<td><img src=\"[imgstring].dmi\" width=[tilesizex] height=[tilesizey]></td>"
text2file("</table></body></html>",filename)
//Display it
src << browse(file(filename),"window=[windowname],\
size=[min(world.maxx*16+50,630)]x[min(world.maxy*16+150,450)],[browseopt]")
mob/PC/verb/displaymap()
set category = "Channels"
set desc="See the mapper in action!"
src << "Displaying map... (Size: [world.maxx]x[world.maxy])"
src.cr_browsermap(src.z)
src << "Map displayed."
Problem description:Well i want to make a minimap and a verb to display whatever z level i am on my map is 400x400 tho and it keeps bogging the game down and making it crash. This was a demo i downloaded was wondering if anything can be done? Also it's not getting by the please wait on the new browser that pops up.
One thing that can be done is a image(/obj/type/here) which uses the cache (otherwise, an icon() call actually generates graphical data and sends it to the client using bandwidth).
Another possible solution is to supply a 1x1 pixel color that represents each tile, and just use plain ole html to display those pixels using a table or something of the sort.
Another option is some javascript and a single image file that contains mini-versions of the tiles (4x4, 8x8) which can grab those tiny tiles and arrange them (like an external tileset mapper in html).