Merge pull request #4602 from VOREStation/upstream-merge-5765

[MIRROR] Speeds up getFlatIcon
This commit is contained in:
Novacat
2019-03-27 03:07:16 -04:00
committed by GitHub

View File

@@ -627,22 +627,44 @@ proc/ColorTone(rgb, tone)
if(gray <= tone_gray) return BlendRGB("#000000", tone, gray/(tone_gray || 1)) if(gray <= tone_gray) return BlendRGB("#000000", tone, gray/(tone_gray || 1))
else return BlendRGB(tone, "#ffffff", (gray-tone_gray)/((255-tone_gray) || 1)) else return BlendRGB(tone, "#ffffff", (gray-tone_gray)/((255-tone_gray) || 1))
// Ported from /tg/station
/* // Creates a single icon from a given /atom or /image. Only the first argument is required.
Get flat icon by DarkCampainger. As it says on the tin, will return an icon with all the overlays
as a single icon. Useful for when you want to manipulate an icon via the above as overlays are not normally included.
The _flatIcons list is a cache for generated icon files.
*/
/proc/getFlatIcon(image/A, defdir, deficon, defstate, defblend, start = TRUE, no_anim = FALSE) /proc/getFlatIcon(image/A, defdir, deficon, defstate, defblend, start = TRUE, no_anim = FALSE)
// We start with a blank canvas, otherwise some icon procs crash silently //Define... defines.
var/icon/flat = icon('icons/effects/effects.dmi', "nothing") // Final flattened icon var/static/icon/flat_template = icon('icons/effects/effects.dmi', "nothing")
if(!A)
return flat
if(A.alpha <= 0)
return flat
var/noIcon = FALSE
#define BLANK icon(flat_template)
#define SET_SELF(SETVAR) do { \
var/icon/SELF_ICON=icon(icon(curicon, curstate, base_icon_dir),"",SOUTH,no_anim?1:null); \
if(A.alpha<255) { \
SELF_ICON.Blend(rgb(255,255,255,A.alpha),ICON_MULTIPLY);\
} \
if(A.color) { \
if(islist(A.color)){ \
SELF_ICON.MapColors(arglist(A.color))} \
else{ \
SELF_ICON.Blend(A.color,ICON_MULTIPLY)} \
} \
##SETVAR=SELF_ICON;\
} while (0)
#define INDEX_X_LOW 1
#define INDEX_X_HIGH 2
#define INDEX_Y_LOW 3
#define INDEX_Y_HIGH 4
#define flatX1 flat_size[INDEX_X_LOW]
#define flatX2 flat_size[INDEX_X_HIGH]
#define flatY1 flat_size[INDEX_Y_LOW]
#define flatY2 flat_size[INDEX_Y_HIGH]
#define addX1 add_size[INDEX_X_LOW]
#define addX2 add_size[INDEX_X_HIGH]
#define addY1 add_size[INDEX_Y_LOW]
#define addY2 add_size[INDEX_Y_HIGH]
if(!A || A.alpha <= 0)
return BLANK
var/noIcon = FALSE
if(start) if(start)
if(!defdir) if(!defdir)
defdir = A.dir defdir = A.dir
@@ -653,23 +675,13 @@ The _flatIcons list is a cache for generated icon files.
if(!defblend) if(!defblend)
defblend = A.blend_mode defblend = A.blend_mode
var/curicon var/curicon = A.icon || deficon
if(A.icon) var/curstate = A.icon_state || defstate
curicon = A.icon
else
curicon = deficon
if(!curicon) if(!((noIcon = (!curicon))))
noIcon = TRUE // Do not render this object. var/curstates = icon_states(curicon)
if(!(curstate in curstates))
var/curstate if("" in curstates)
if(A.icon_state)
curstate = A.icon_state
else
curstate = defstate
if(!noIcon && !(curstate in icon_states(curicon)))
if("" in icon_states(curicon))
curstate = "" curstate = ""
else else
noIcon = TRUE // Do not render this object. noIcon = TRUE // Do not render this object.
@@ -683,36 +695,28 @@ The _flatIcons list is a cache for generated icon files.
else else
curdir = A.dir curdir = A.dir
//Let's check if the icon actually contains any diagonals, just skip if it's south to save (lot of) time //Try to remove/optimize this section ASAP, CPU hog.
if(curdir != SOUTH) //Determines if there's directionals.
var/icon/test_icon if(!noIcon && curdir != SOUTH)
var/directionals_exist = FALSE var/exist = FALSE
var/list/dirs_to_check = cardinal - SOUTH var/static/list/checkdirs = list(NORTH, EAST, WEST)
outer: for(var/i in checkdirs) //Not using GLOB for a reason.
for(var/possible_dir in dirs_to_check) if(length(icon_states(icon(curicon, curstate, i))))
test_icon = icon(curicon,curstate,possible_dir,frame=1) exist = TRUE
for(var/x in 1 to world.icon_size) break
for(var/y in 1 to world.icon_size) if(!exist)
if(!isnull(test_icon.GetPixel(x,y)))
directionals_exist = TRUE
break outer
if(!directionals_exist)
base_icon_dir = SOUTH base_icon_dir = SOUTH
//
if(!base_icon_dir) if(!base_icon_dir)
base_icon_dir = curdir base_icon_dir = curdir
var/curblend ASSERT(!BLEND_DEFAULT) //I might just be stupid but lets make sure this define is 0.
if(A.blend_mode == BLEND_DEFAULT)
curblend = defblend
else
curblend = A.blend_mode
// Before processing overlays, make sure any pending overlays are applied var/curblend = A.blend_mode || defblend
if (isloc(A))
var/atom/aAtom = A
if(aAtom.flags & OVERLAY_QUEUED)
COMPILE_OVERLAYS(aAtom)
if(A.overlays.len || A.underlays.len)
var/icon/flat = BLANK
// Layers will be a sorted list of icons/overlays, based on the order in which they are displayed // Layers will be a sorted list of icons/overlays, based on the order in which they are displayed
var/list/layers = list() var/list/layers = list()
var/image/copy var/image/copy
@@ -725,64 +729,35 @@ The _flatIcons list is a cache for generated icon files.
layers[copy] = A.layer layers[copy] = A.layer
// Loop through the underlays, then overlays, sorting them into the layers list // Loop through the underlays, then overlays, sorting them into the layers list
var/list/process = A.underlays // Current list being processed for(var/process_set in 0 to 1)
var/pSet=0 // Which list is being processed: 0 = underlays, 1 = overlays var/list/process = process_set? A.overlays : A.underlays
var/curIndex=1 // index of 'current' in list being processed for(var/i in 1 to process.len)
var/current // Current overlay being sorted var/image/current = process[i]
var/currentLayer // Calculated layer that overlay appears on (special case for FLOAT_LAYER)
var/compare // The overlay 'add' is being compared against
var/cmpIndex // The index in the layers list of 'compare'
while(TRUE)
if(curIndex<=process.len)
current = process[curIndex]
if(!current) if(!current)
curIndex++ //Try the next layer
continue continue
var/image/I = current if(current.plane != FLOAT_PLANE && current.plane != A.plane)
if(I.plane != FLOAT_PLANE && I.plane != A.plane)
curIndex++
continue continue
currentLayer = I.layer var/current_layer = current.layer
if(currentLayer<0) // Special case for FLOAT_LAYER if(current_layer < 0)
if(currentLayer <= -1000) if(current_layer <= -1000)
return flat return flat
if(pSet == 0) // Underlay current_layer = process_set + A.layer + current_layer / 1000
currentLayer = A.layer+currentLayer/1000
else // Overlay
currentLayer = A.layer+(1000+currentLayer)/1000
// Sort add into layers list for(var/p in 1 to layers.len)
for(cmpIndex=1,cmpIndex<=layers.len,cmpIndex++) var/image/cmp = layers[p]
compare = layers[cmpIndex] if(current_layer < layers[cmp])
if(currentLayer < layers[compare]) // Associated value is the calculated layer layers.Insert(p, current)
layers.Insert(cmpIndex,current)
layers[current] = currentLayer
break break
if(cmpIndex>layers.len) // Reached end of list without inserting layers[current] = current_layer
layers[current]=currentLayer // Place at end
curIndex++ //sortTim(layers, /proc/cmp_image_layer_asc)
if(curIndex>process.len)
if(pSet == 0) // Switch to overlays
curIndex = 1
pSet = 1
process = A.overlays
else // All done
break
var/icon/add // Icon of overlay being added var/icon/add // Icon of overlay being added
// Current dimensions of flattened icon // Current dimensions of flattened icon
var/flatX1=1 var/list/flat_size = list(1, flat.Width(), 1, flat.Height())
var/flatX2=flat.Width()
var/flatY1=1
var/flatY2=flat.Height()
// Dimensions of overlay being added // Dimensions of overlay being added
var/addX1 var/list/add_size[4]
var/addX2
var/addY1
var/addY2
for(var/V in layers) for(var/V in layers)
var/image/I = V var/image/I = V
@@ -793,25 +768,36 @@ The _flatIcons list is a cache for generated icon files.
curblend = BLEND_OVERLAY curblend = BLEND_OVERLAY
add = icon(I.icon, I.icon_state, base_icon_dir) add = icon(I.icon, I.icon_state, base_icon_dir)
else // 'I' is an appearance object. else // 'I' is an appearance object.
add = getFlatIcon(new/image(I), curdir, curicon, curstate, curblend, FALSE, no_anim) add = getFlatIcon(image(I), curdir, curicon, curstate, curblend, FALSE, no_anim)
if(!add)
continue
// Find the new dimensions of the flat icon to fit the added overlay // Find the new dimensions of the flat icon to fit the added overlay
addX1 = min(flatX1, I.pixel_x+1) add_size = list(
addX2 = max(flatX2, I.pixel_x+add.Width()) min(flatX1, I.pixel_x+1),
addY1 = min(flatY1, I.pixel_y+1) max(flatX2, I.pixel_x+add.Width()),
addY2 = max(flatY2, I.pixel_y+add.Height()) min(flatY1, I.pixel_y+1),
max(flatY2, I.pixel_y+add.Height())
)
if(addX1!=flatX1 || addX2!=flatX2 || addY1!=flatY1 || addY2!=flatY2) if(flat_size ~! add_size)
// Resize the flattened icon so the new icon fits // Resize the flattened icon so the new icon fits
flat.Crop(addX1-flatX1+1, addY1-flatY1+1, addX2-flatX1+1, addY2-flatY1+1) flat.Crop(
flatX1=addX1;flatX2=addX2 addX1 - flatX1 + 1,
flatY1=addY1;flatY2=addY2 addY1 - flatY1 + 1,
addX2 - flatX1 + 1,
addY2 - flatY1 + 1
)
flat_size = add_size.Copy()
// Blend the overlay into the flattened icon // Blend the overlay into the flattened icon
flat.Blend(add, blendMode2iconMode(curblend), I.pixel_x + 2 - flatX1, I.pixel_y + 2 - flatY1) flat.Blend(add, blendMode2iconMode(curblend), I.pixel_x + 2 - flatX1, I.pixel_y + 2 - flatY1)
if(A.color) if(A.color)
if(islist(A.color))
flat.MapColors(arglist(A.color))
else
flat.Blend(A.color, ICON_MULTIPLY) flat.Blend(A.color, ICON_MULTIPLY)
if(A.alpha < 255) if(A.alpha < 255)
flat.Blend(rgb(255, 255, 255, A.alpha), ICON_MULTIPLY) flat.Blend(rgb(255, 255, 255, A.alpha), ICON_MULTIPLY)
@@ -819,12 +805,30 @@ The _flatIcons list is a cache for generated icon files.
//Clean up repeated frames //Clean up repeated frames
var/icon/cleaned = new /icon() var/icon/cleaned = new /icon()
cleaned.Insert(flat, "", SOUTH, 1, 0) cleaned.Insert(flat, "", SOUTH, 1, 0)
return cleaned . = cleaned
else else
return icon(flat, "", SOUTH) . = icon(flat, "", SOUTH)
else //There's no overlays.
if(!noIcon)
SET_SELF(.)
//Clear defines
#undef flatX1
#undef flatX2
#undef flatY1
#undef flatY2
#undef addX1
#undef addX2
#undef addY1
#undef addY2
#undef INDEX_X_LOW
#undef INDEX_X_HIGH
#undef INDEX_Y_LOW
#undef INDEX_Y_HIGH
#undef BLANK
#undef SET_SELF
/proc/getIconMask(atom/A)//By yours truly. Creates a dynamic mask for a mob/whatever. /N /proc/getIconMask(atom/A)//By yours truly. Creates a dynamic mask for a mob/whatever. /N
var/icon/alpha_mask = new(A.icon,A.icon_state)//So we want the default icon and icon state of A. var/icon/alpha_mask = new(A.icon,A.icon_state)//So we want the default icon and icon state of A.