floodfill add colored candles

This commit is contained in:
NULL511
2024-05-04 18:02:55 -04:00
parent 50f0aacc5d
commit 65bdde2b17
9 changed files with 1524 additions and 238 deletions

View File

@ -19,118 +19,187 @@
#define BLOCK_AMETHYST_CLUSTER 103
#define BLOCK_BEACON 104
#define BLOCK_BREWING_STAND 105
#define BLOCK_CANDLES_LIT_1 106
#define BLOCK_CANDLES_LIT_2 107
#define BLOCK_CANDLES_LIT_3 108
#define BLOCK_CANDLES_LIT_4 109
#define BLOCK_CAVE_VINE_BERRIES 110
#define BLOCK_COMPARATOR_LIT 111
#define BLOCK_COPPER_BULB_LIT 112
#define BLOCK_COPPER_BULB_EXPOSED_LIT 113
#define BLOCK_COPPER_BULB_OXIDIZED_LIT 114
#define BLOCK_COPPER_BULB_WEATHERED_LIT 115
#define BLOCK_CONDUIT 116
#define BLOCK_CRYING_OBSIDIAN 117
#define BLOCK_END_GATEWAY 118
#define BLOCK_END_ROD 119
#define BLOCK_FIRE 120
#define BLOCK_FROGLIGHT_OCHRE 121
#define BLOCK_FROGLIGHT_PEARLESCENT 122
#define BLOCK_FROGLIGHT_VERDANT 123
#define BLOCK_GLOW_LICHEN 124
#define BLOCK_GLOWSTONE 125
#define BLOCK_JACK_O_LANTERN 126
#define BLOCK_LANTERN 127
#define BLOCK_LAVA 128
#define BLOCK_LIGHT_1 129
#define BLOCK_LIGHT_2 130
#define BLOCK_LIGHT_3 131
#define BLOCK_LIGHT_4 132
#define BLOCK_LIGHT_5 133
#define BLOCK_LIGHT_6 134
#define BLOCK_LIGHT_7 135
#define BLOCK_LIGHT_8 136
#define BLOCK_LIGHT_9 137
#define BLOCK_LIGHT_10 138
#define BLOCK_LIGHT_11 139
#define BLOCK_LIGHT_12 140
#define BLOCK_LIGHT_13 141
#define BLOCK_LIGHT_14 142
#define BLOCK_LIGHT_15 143
#define BLOCK_MAGMA 144
#define BLOCK_REDSTONE_LAMP_LIT 145
#define BLOCK_REDSTONE_TORCH_LIT 146
#define BLOCK_REDSTONE_WIRE_1 147
#define BLOCK_REDSTONE_WIRE_2 148
#define BLOCK_REDSTONE_WIRE_3 149
#define BLOCK_REDSTONE_WIRE_4 150
#define BLOCK_REDSTONE_WIRE_5 151
#define BLOCK_REDSTONE_WIRE_6 152
#define BLOCK_REDSTONE_WIRE_7 153
#define BLOCK_REDSTONE_WIRE_8 154
#define BLOCK_REDSTONE_WIRE_9 155
#define BLOCK_REDSTONE_WIRE_10 156
#define BLOCK_REDSTONE_WIRE_11 157
#define BLOCK_REDSTONE_WIRE_12 158
#define BLOCK_REDSTONE_WIRE_13 159
#define BLOCK_REDSTONE_WIRE_14 160
#define BLOCK_REDSTONE_WIRE_15 161
#define BLOCK_REPEATER_LIT 162
#define BLOCK_RESPAWN_ANCHOR_4 163
#define BLOCK_SCULK_SENSOR_ACTIVE 164
#define BLOCK_SEA_PICKLE_WET_1 165
#define BLOCK_SEA_PICKLE_WET_2 166
#define BLOCK_SEA_PICKLE_WET_3 167
#define BLOCK_SEA_PICKLE_WET_4 168
#define BLOCK_SEA_LANTERN 169
#define BLOCK_SHROOMLIGHT 170
#define BLOCK_SMOKER_LIT 171
#define BLOCK_SOUL_FIRE 172
#define BLOCK_SOUL_LANTERN 173
#define BLOCK_SOUL_TORCH 174
#define BLOCK_TORCH 175
#define BLOCK_GLASS 201
#define BLOCK_HONEY 202
#define BLOCK_ICE 203
#define BLOCK_NETHER_PORTAL 204
#define BLOCK_SLIME 205
#define BLOCK_GLASS_BLACK 206
#define BLOCK_GLASS_BLUE 207
#define BLOCK_GLASS_BROWN 208
#define BLOCK_GLASS_CYAN 209
#define BLOCK_GLASS_GRAY 210
#define BLOCK_GLASS_GREEN 211
#define BLOCK_GLASS_LIGHT_BLUE 212
#define BLOCK_GLASS_LIGHT_GRAY 213
#define BLOCK_GLASS_LIME 214
#define BLOCK_GLASS_MAGENTA 215
#define BLOCK_GLASS_ORANGE 216
#define BLOCK_GLASS_PINK 217
#define BLOCK_GLASS_PURPLE 218
#define BLOCK_GLASS_RED 219
#define BLOCK_GLASS_WHITE 220
#define BLOCK_GLASS_YELLOW 221
#define BLOCK_BUTTON 301
#define BLOCK_CARPET 302
#define BLOCK_CHAIN 303
#define BLOCK_DOOR_N 304
#define BLOCK_DOOR_E 305
#define BLOCK_DOOR_S 306
#define BLOCK_DOOR_W 307
#define BLOCK_FENCE 308
#define BLOCK_FENCE_GATE 309
#define BLOCK_FLOWER_POT 310
#define BLOCK_IRON_BARS 311
#define BLOCK_LADDER 312
#define BLOCK_LEVER 313
#define BLOCK_PRESSURE_PLATE 314
#define BLOCK_SLAB_TOP 315
#define BLOCK_SLAB_BOTTOM 316
#define BLOCK_TRAPDOOR_BOTTOM 317
#define BLOCK_TRAPDOOR_TOP 318
#define BLOCK_TRAPDOOR_N 319
#define BLOCK_TRAPDOOR_E 320
#define BLOCK_TRAPDOOR_S 321
#define BLOCK_TRAPDOOR_W 322
#define BLOCK_END_PORTAL 400
#define BLOCK_SIGN 401
#define BLOCK_CANDLES_PLAIN_LIT_1 106
#define BLOCK_CANDLES_PLAIN_LIT_2 107
#define BLOCK_CANDLES_PLAIN_LIT_3 108
#define BLOCK_CANDLES_PLAIN_LIT_4 109
#define BLOCK_CANDLES_BLACK_LIT_1 110
#define BLOCK_CANDLES_BLACK_LIT_2 111
#define BLOCK_CANDLES_BLACK_LIT_3 112
#define BLOCK_CANDLES_BLACK_LIT_4 113
#define BLOCK_CANDLES_BLUE_LIT_1 114
#define BLOCK_CANDLES_BLUE_LIT_2 115
#define BLOCK_CANDLES_BLUE_LIT_3 116
#define BLOCK_CANDLES_BLUE_LIT_4 117
#define BLOCK_CANDLES_BROWN_LIT_1 118
#define BLOCK_CANDLES_BROWN_LIT_2 119
#define BLOCK_CANDLES_BROWN_LIT_3 120
#define BLOCK_CANDLES_BROWN_LIT_4 121
#define BLOCK_CANDLES_CYAN_LIT_1 122
#define BLOCK_CANDLES_CYAN_LIT_2 123
#define BLOCK_CANDLES_CYAN_LIT_3 124
#define BLOCK_CANDLES_CYAN_LIT_4 125
#define BLOCK_CANDLES_GRAY_LIT_1 126
#define BLOCK_CANDLES_GRAY_LIT_2 127
#define BLOCK_CANDLES_GRAY_LIT_3 128
#define BLOCK_CANDLES_GRAY_LIT_4 129
#define BLOCK_CANDLES_GREEN_LIT_1 130
#define BLOCK_CANDLES_GREEN_LIT_2 131
#define BLOCK_CANDLES_GREEN_LIT_3 132
#define BLOCK_CANDLES_GREEN_LIT_4 133
#define BLOCK_CANDLES_LIGHT_BLUE_LIT_1 134
#define BLOCK_CANDLES_LIGHT_BLUE_LIT_2 135
#define BLOCK_CANDLES_LIGHT_BLUE_LIT_3 136
#define BLOCK_CANDLES_LIGHT_BLUE_LIT_4 137
#define BLOCK_CANDLES_LIGHT_GRAY_LIT_1 138
#define BLOCK_CANDLES_LIGHT_GRAY_LIT_2 139
#define BLOCK_CANDLES_LIGHT_GRAY_LIT_3 140
#define BLOCK_CANDLES_LIGHT_GRAY_LIT_4 141
#define BLOCK_CANDLES_LIME_LIT_1 142
#define BLOCK_CANDLES_LIME_LIT_2 143
#define BLOCK_CANDLES_LIME_LIT_3 144
#define BLOCK_CANDLES_LIME_LIT_4 145
#define BLOCK_CANDLES_MAGENTA_LIT_1 146
#define BLOCK_CANDLES_MAGENTA_LIT_2 147
#define BLOCK_CANDLES_MAGENTA_LIT_3 148
#define BLOCK_CANDLES_MAGENTA_LIT_4 149
#define BLOCK_CANDLES_ORANGE_LIT_1 150
#define BLOCK_CANDLES_ORANGE_LIT_2 151
#define BLOCK_CANDLES_ORANGE_LIT_3 152
#define BLOCK_CANDLES_ORANGE_LIT_4 153
#define BLOCK_CANDLES_PINK_LIT_1 154
#define BLOCK_CANDLES_PINK_LIT_2 155
#define BLOCK_CANDLES_PINK_LIT_3 156
#define BLOCK_CANDLES_PINK_LIT_4 157
#define BLOCK_CANDLES_PURPLE_LIT_1 158
#define BLOCK_CANDLES_PURPLE_LIT_2 159
#define BLOCK_CANDLES_PURPLE_LIT_3 160
#define BLOCK_CANDLES_PURPLE_LIT_4 161
#define BLOCK_CANDLES_RED_LIT_1 162
#define BLOCK_CANDLES_RED_LIT_2 163
#define BLOCK_CANDLES_RED_LIT_3 164
#define BLOCK_CANDLES_RED_LIT_4 165
#define BLOCK_CANDLES_WHITE_LIT_1 166
#define BLOCK_CANDLES_WHITE_LIT_2 167
#define BLOCK_CANDLES_WHITE_LIT_3 168
#define BLOCK_CANDLES_WHITE_LIT_4 169
#define BLOCK_CANDLES_YELLOW_LIT_1 170
#define BLOCK_CANDLES_YELLOW_LIT_2 171
#define BLOCK_CANDLES_YELLOW_LIT_3 172
#define BLOCK_CANDLES_YELLOW_LIT_4 173
#define BLOCK_CANDLES_LIT_1 174
#define BLOCK_CANDLES_LIT_2 175
#define BLOCK_CANDLES_LIT_3 176
#define BLOCK_CANDLES_LIT_4 177
#define BLOCK_CAVE_VINE_BERRIES 178
#define BLOCK_COMPARATOR_LIT 179
#define BLOCK_COPPER_BULB_LIT 180
#define BLOCK_COPPER_BULB_EXPOSED_LIT 181
#define BLOCK_COPPER_BULB_OXIDIZED_LIT 182
#define BLOCK_COPPER_BULB_WEATHERED_LIT 183
#define BLOCK_CONDUIT 184
#define BLOCK_CRYING_OBSIDIAN 185
#define BLOCK_END_GATEWAY 186
#define BLOCK_END_ROD 187
#define BLOCK_FIRE 188
#define BLOCK_FROGLIGHT_OCHRE 189
#define BLOCK_FROGLIGHT_PEARLESCENT 190
#define BLOCK_FROGLIGHT_VERDANT 191
#define BLOCK_GLOW_LICHEN 192
#define BLOCK_GLOWSTONE 193
#define BLOCK_JACK_O_LANTERN 194
#define BLOCK_LANTERN 195
#define BLOCK_LAVA 196
#define BLOCK_LIGHT_1 197
#define BLOCK_LIGHT_2 198
#define BLOCK_LIGHT_3 199
#define BLOCK_LIGHT_4 200
#define BLOCK_LIGHT_5 201
#define BLOCK_LIGHT_6 202
#define BLOCK_LIGHT_7 203
#define BLOCK_LIGHT_8 204
#define BLOCK_LIGHT_9 205
#define BLOCK_LIGHT_10 206
#define BLOCK_LIGHT_11 207
#define BLOCK_LIGHT_12 208
#define BLOCK_LIGHT_13 209
#define BLOCK_LIGHT_14 210
#define BLOCK_LIGHT_15 211
#define BLOCK_MAGMA 212
#define BLOCK_REDSTONE_LAMP_LIT 213
#define BLOCK_REDSTONE_TORCH_LIT 214
#define BLOCK_REDSTONE_WIRE_1 215
#define BLOCK_REDSTONE_WIRE_2 216
#define BLOCK_REDSTONE_WIRE_3 217
#define BLOCK_REDSTONE_WIRE_4 218
#define BLOCK_REDSTONE_WIRE_5 219
#define BLOCK_REDSTONE_WIRE_6 220
#define BLOCK_REDSTONE_WIRE_7 221
#define BLOCK_REDSTONE_WIRE_8 222
#define BLOCK_REDSTONE_WIRE_9 223
#define BLOCK_REDSTONE_WIRE_10 224
#define BLOCK_REDSTONE_WIRE_11 225
#define BLOCK_REDSTONE_WIRE_12 226
#define BLOCK_REDSTONE_WIRE_13 227
#define BLOCK_REDSTONE_WIRE_14 228
#define BLOCK_REDSTONE_WIRE_15 229
#define BLOCK_REPEATER_LIT 230
#define BLOCK_RESPAWN_ANCHOR_4 231
#define BLOCK_SCULK_SENSOR_ACTIVE 232
#define BLOCK_SEA_PICKLE_WET_1 233
#define BLOCK_SEA_PICKLE_WET_2 234
#define BLOCK_SEA_PICKLE_WET_3 235
#define BLOCK_SEA_PICKLE_WET_4 236
#define BLOCK_SEA_LANTERN 237
#define BLOCK_SHROOMLIGHT 238
#define BLOCK_SMOKER_LIT 239
#define BLOCK_SOUL_FIRE 240
#define BLOCK_SOUL_LANTERN 241
#define BLOCK_SOUL_TORCH 242
#define BLOCK_TORCH 243
#define BLOCK_GLASS 301
#define BLOCK_HONEY 302
#define BLOCK_ICE 303
#define BLOCK_NETHER_PORTAL 304
#define BLOCK_SLIME 305
#define BLOCK_GLASS_BLACK 306
#define BLOCK_GLASS_BLUE 307
#define BLOCK_GLASS_BROWN 308
#define BLOCK_GLASS_CYAN 309
#define BLOCK_GLASS_GRAY 310
#define BLOCK_GLASS_GREEN 311
#define BLOCK_GLASS_LIGHT_BLUE 312
#define BLOCK_GLASS_LIGHT_GRAY 313
#define BLOCK_GLASS_LIME 314
#define BLOCK_GLASS_MAGENTA 315
#define BLOCK_GLASS_ORANGE 316
#define BLOCK_GLASS_PINK 317
#define BLOCK_GLASS_PURPLE 318
#define BLOCK_GLASS_RED 319
#define BLOCK_GLASS_WHITE 320
#define BLOCK_GLASS_YELLOW 321
#define BLOCK_BUTTON 401
#define BLOCK_CANDLE 402
#define BLOCK_CARPET 403
#define BLOCK_CHAIN 404
#define BLOCK_DOOR_N 405
#define BLOCK_DOOR_E 406
#define BLOCK_DOOR_S 407
#define BLOCK_DOOR_W 408
#define BLOCK_FENCE 409
#define BLOCK_FENCE_GATE 410
#define BLOCK_FLOWER_POT 411
#define BLOCK_IRON_BARS 412
#define BLOCK_LADDER 413
#define BLOCK_LEVER 414
#define BLOCK_PRESSURE_PLATE 415
#define BLOCK_SLAB_TOP 416
#define BLOCK_SLAB_BOTTOM 417
#define BLOCK_TRAPDOOR_BOTTOM 418
#define BLOCK_TRAPDOOR_TOP 419
#define BLOCK_TRAPDOOR_N 420
#define BLOCK_TRAPDOOR_E 421
#define BLOCK_TRAPDOOR_S 422
#define BLOCK_TRAPDOOR_W 423
#define BLOCK_END_PORTAL 500
#define BLOCK_SIGN 501

View File

@ -678,7 +678,7 @@ const vec3 aerochrome_color = mix(vec3(1.0, 0.0, 0.0), vec3(0.715, 0.303, 0.631)
#define LPV_NORMAL_OFFSET
#define LPV_ENTITY_LIGHTS
#define LPV_REDSTONE_LIGHTS
#define LPV_COLORED_CANDLES
//#define LPV_COLORED_CANDLES
#ifdef LPV_ENABLED
#ifdef IRIS_FEATURE_CUSTOM_IMAGES