1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

rv:: snow:: snow_not_player parameter

This commit is contained in:
Zeno Rogue 2023-04-11 16:50:07 +02:00
parent 0b6be1caff
commit 3e81697164

View File

@ -56,6 +56,9 @@ bool random_colors = false;
/* just one snowball per cell, in the center */
bool just_centered = false;
/* do not draw snow on player cell */
bool snow_not_player = false;
int snow_shape = 0;
struct snowball {
@ -131,6 +134,8 @@ transmatrix random_snow_matrix(cell *c) {
}
bool draw_snow(cell *c, const shiftmatrix& V) {
if(c == cwt.at && snow_not_player) return false;
if(!snowballs_at.count(c)) {
auto& v = snowballs_at[c];
@ -299,6 +304,7 @@ auto hchook = addHook(hooks_drawcell, 100, draw_snow)
+ addHook(hooks_configfile, 100, [] {
param_b(random_colors, "snow_random_colors");
param_b(just_centered, "snow_just_centered");
param_b(snow_not_player, "snow_not_player");
})
#if CAP_RVSLIDES