mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-18 04:41:27 +01:00
fdfb49012b
* some more globals * .
130 lines
5.3 KiB
Plaintext
130 lines
5.3 KiB
Plaintext
GLOBAL_LIST(word_to_uristrune_table)
|
|
|
|
/proc/word_to_uristrune_bit(word)
|
|
if(GLOB.word_to_uristrune_table == null)
|
|
GLOB.word_to_uristrune_table = list()
|
|
|
|
var/bit = 1
|
|
var/list/words = list("ire", "ego", "nahlizet", "certum", "veri", "jatkaa", "mgar", "balaq", "karazet", "geeri")
|
|
|
|
while(length(words))
|
|
var/w = pick(words)
|
|
|
|
GLOB.word_to_uristrune_table[w] = bit
|
|
|
|
words -= w
|
|
bit <<= 1
|
|
|
|
return GLOB.word_to_uristrune_table[word]
|
|
|
|
|
|
|
|
/proc/get_uristrune_cult(word1, word2, word3)
|
|
var/animated
|
|
|
|
if((word1 == GLOB.cultwords["travel"] && word2 == GLOB.cultwords["self"]) \
|
|
|| (word1 == GLOB.cultwords["join"] && word2 == GLOB.cultwords["blood"] && word3 == GLOB.cultwords["self"]) \
|
|
|| (word1 == GLOB.cultwords["hell"] && word2 == GLOB.cultwords["join"] && word3 == GLOB.cultwords["self"]) \
|
|
|| (word1 == GLOB.cultwords["see"] && word2 == GLOB.cultwords["blood"] && word3 == GLOB.cultwords["hell"]) \
|
|
|| (word1 == GLOB.cultwords["destroy"] && word2 == GLOB.cultwords["see"] && word3 == GLOB.cultwords["technology"]) \
|
|
|| (word1 == GLOB.cultwords["travel"] && word2 == GLOB.cultwords["blood"] && word3 == GLOB.cultwords["self"]) \
|
|
|| (word1 == GLOB.cultwords["see"] && word2 == GLOB.cultwords["hell"] && word3 == GLOB.cultwords["join"]) \
|
|
|| (word1 == GLOB.cultwords["blood"] && word2 == GLOB.cultwords["join"] && word3 == GLOB.cultwords["hell"]) \
|
|
|| (word1 == GLOB.cultwords["hide"] && word2 == GLOB.cultwords["see"] && word3 == GLOB.cultwords["blood"]) \
|
|
|| (word1 == GLOB.cultwords["hell"] && word2 == GLOB.cultwords["travel"] && word3 == GLOB.cultwords["self"]) \
|
|
|| (word1 == GLOB.cultwords["blood"] && word2 == GLOB.cultwords["see"] && word3 == GLOB.cultwords["travel"]) \
|
|
|| (word1 == GLOB.cultwords["hell"] && word2 == GLOB.cultwords["technology"] && word3 == GLOB.cultwords["join"]) \
|
|
|| (word1 == GLOB.cultwords["hell"] && word2 == GLOB.cultwords["blood"] && word3 == GLOB.cultwords["join"]) \
|
|
|| (word1 == GLOB.cultwords["blood"] && word2 == GLOB.cultwords["see"] && word3 == GLOB.cultwords["hide"]) \
|
|
|| (word1 == GLOB.cultwords["destroy"] && word2 == GLOB.cultwords["travel"] && word3 == GLOB.cultwords["self"]) \
|
|
|| (word1 == GLOB.cultwords["travel"] && word2 == GLOB.cultwords["technology"] && word3 == GLOB.cultwords["other"]) \
|
|
|| (word1 == GLOB.cultwords["join"] && word2 == GLOB.cultwords["other"] && word3 == GLOB.cultwords["self"]) \
|
|
|| (word1 == GLOB.cultwords["hide"] && word2 == GLOB.cultwords["other"] && word3 == GLOB.cultwords["see"]) \
|
|
|| (word1 == GLOB.cultwords["destroy"] && word2 == GLOB.cultwords["see"] && word3 == GLOB.cultwords["other"]) \
|
|
|| (word1 == GLOB.cultwords["destroy"] && word2 == GLOB.cultwords["see"] && word3 == GLOB.cultwords["blood"]) \
|
|
|| (word1 == GLOB.cultwords["self"] && word2 == GLOB.cultwords["other"] && word3 == GLOB.cultwords["technology"]) \
|
|
|| (word1 == GLOB.cultwords["travel"] && word2 == GLOB.cultwords["other"]) \
|
|
|| (word1 == GLOB.cultwords["join"] && word2 == GLOB.cultwords["hide"] && word3 == GLOB.cultwords["technology"]) )
|
|
animated = 1
|
|
else
|
|
animated = 0
|
|
|
|
var/bits = word_to_uristrune_bit(word1) \
|
|
| word_to_uristrune_bit(word2) \
|
|
| word_to_uristrune_bit(word3)
|
|
|
|
return get_uristrune(bits, animated)
|
|
|
|
GLOBAL_LIST_EMPTY(uristrune_cache)
|
|
|
|
/proc/get_uristrune(symbol_bits, animated = 0)
|
|
var/lookup = "[symbol_bits]-[animated]"
|
|
|
|
if(lookup in GLOB.uristrune_cache)
|
|
return GLOB.uristrune_cache[lookup]
|
|
|
|
var/icon/I = icon('icons/effects/uristrunes.dmi', "blank")
|
|
|
|
for(var/i = 0, i < 10, i++)
|
|
if(BITTEST(symbol_bits, i))
|
|
I.Blend(icon('icons/effects/uristrunes.dmi', "rune-[1 << i]"), ICON_OVERLAY)
|
|
|
|
|
|
I.SwapColor(rgb(0, 0, 0, 100), rgb(100, 0, 0, 200))
|
|
I.SwapColor(rgb(0, 0, 0, 50), rgb(150, 0, 0, 200))
|
|
|
|
for(var/x = 1, x <= 32, x++)
|
|
for(var/y = 1, y <= 32, y++)
|
|
var/p = I.GetPixel(x, y)
|
|
|
|
if(p == null)
|
|
var/n = I.GetPixel(x, y + 1)
|
|
var/s = I.GetPixel(x, y - 1)
|
|
var/e = I.GetPixel(x + 1, y)
|
|
var/w = I.GetPixel(x - 1, y)
|
|
|
|
if(n == "#000000" || s == "#000000" || e == "#000000" || w == "#000000")
|
|
I.DrawBox(rgb(200, 0, 0, 200), x, y)
|
|
|
|
else
|
|
var/ne = I.GetPixel(x + 1, y + 1)
|
|
var/se = I.GetPixel(x + 1, y - 1)
|
|
var/nw = I.GetPixel(x - 1, y + 1)
|
|
var/sw = I.GetPixel(x - 1, y - 1)
|
|
|
|
if(ne == "#000000" || se == "#000000" || nw == "#000000" || sw == "#000000")
|
|
I.DrawBox(rgb(200, 0, 0, 100), x, y)
|
|
|
|
var/icon/result = icon(I, "")
|
|
|
|
result.Insert(I, "", frame = 1, delay = 10)
|
|
|
|
if(animated == 1)
|
|
var/icon/I2 = icon(I, "")
|
|
I2.MapColors(rgb(0xff,0x0c,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0xff))
|
|
I2.SetIntensity(1.04)
|
|
|
|
var/icon/I3 = icon(I, "")
|
|
I3.MapColors(rgb(0xff,0x18,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0xff))
|
|
I3.SetIntensity(1.08)
|
|
|
|
var/icon/I4 = icon(I, "")
|
|
I4.MapColors(rgb(0xff,0x24,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0xff))
|
|
I4.SetIntensity(1.12)
|
|
|
|
var/icon/I5 = icon(I, "")
|
|
I5.MapColors(rgb(0xff,0x30,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0xff))
|
|
I5.SetIntensity(1.16)
|
|
|
|
result.Insert(I2, "", frame = 2, delay = 4)
|
|
result.Insert(I3, "", frame = 3, delay = 3)
|
|
result.Insert(I4, "", frame = 4, delay = 2)
|
|
result.Insert(I5, "", frame = 5, delay = 6)
|
|
result.Insert(I4, "", frame = 6, delay = 2)
|
|
result.Insert(I3, "", frame = 7, delay = 2)
|
|
result.Insert(I2, "", frame = 8, delay = 2)
|
|
|
|
GLOB.uristrune_cache[lookup] = result
|
|
|
|
return result
|