[2] | 1 | #ifndef LIGHT_HPP |
---|
| 2 | #define LIGHT_HPP |
---|
| 3 | |
---|
| 4 | #include "image.hpp" |
---|
| 5 | #include "palette.hpp" |
---|
| 6 | #include "config.hpp" |
---|
| 7 | #include "crc.hpp" |
---|
| 8 | |
---|
| 9 | #define TTINTS 9 |
---|
[17] | 10 | extern uint8_t *tints[TTINTS]; |
---|
| 11 | extern uint8_t *white_light,*white_light_initial,*green_light,*trans_table; |
---|
| 12 | extern int16_t ambient_ramp; |
---|
[2] | 13 | #define REVERSE_GREEN_TINT 8 |
---|
| 14 | |
---|
[17] | 15 | extern int16_t shutdown_lighting_value,shutdown_lighting; |
---|
[2] | 16 | |
---|
| 17 | class light_source |
---|
| 18 | { |
---|
| 19 | public : |
---|
[16] | 20 | int32_t type,x,xshift,y,yshift; |
---|
| 21 | int32_t outer_radius,mul_div,inner_radius; |
---|
[2] | 22 | |
---|
[16] | 23 | int32_t x1,y1,x2,y2; |
---|
[2] | 24 | char known; |
---|
| 25 | light_source *next; |
---|
| 26 | |
---|
| 27 | void calc_range(); |
---|
[16] | 28 | light_source(char Type, int32_t X, int32_t Y, int32_t Inner_radius, int32_t Outer_radius, |
---|
| 29 | int32_t Xshift, int32_t Yshift, |
---|
[2] | 30 | light_source *Next); |
---|
| 31 | light_source *copy(); |
---|
| 32 | } ; |
---|
| 33 | |
---|
| 34 | class light_patch |
---|
| 35 | { |
---|
| 36 | public : |
---|
[16] | 37 | int32_t total,x1,y1,x2,y2; |
---|
[2] | 38 | light_source **lights; |
---|
| 39 | light_patch *next; |
---|
[16] | 40 | light_patch(int32_t X1, int32_t Y1, int32_t X2, int32_t Y2, light_patch *Next) |
---|
[2] | 41 | { |
---|
| 42 | x1=X1; y1=Y1; x2=X2; y2=Y2; |
---|
| 43 | next=Next; |
---|
| 44 | total=0; |
---|
| 45 | lights=NULL; |
---|
| 46 | } |
---|
[16] | 47 | void add_light(int32_t X1, int32_t Y1, int32_t X2, int32_t Y2, light_source *who); |
---|
[2] | 48 | light_patch *copy(light_patch *Next); |
---|
| 49 | ~light_patch() { if (total) jfree(lights); } |
---|
| 50 | } ; |
---|
| 51 | |
---|
| 52 | void delete_all_lights(); |
---|
| 53 | void delete_light(light_source *which); |
---|
[16] | 54 | light_source *add_light_source(char type, int32_t x, int32_t y, |
---|
| 55 | int32_t inner, int32_t outer, int32_t xshift, int32_t yshift); |
---|
[2] | 56 | |
---|
| 57 | void add_light_spec(spec_directory *sd, char *level_name); |
---|
| 58 | void write_lights(bFILE *fp); |
---|
| 59 | void read_lights(spec_directory *sd, bFILE *fp, char *level_name); |
---|
| 60 | |
---|
| 61 | |
---|
| 62 | void delete_patch_list(light_patch *first); |
---|
| 63 | light_patch *find_patch(int screenx, int screeny, light_patch *list); |
---|
[16] | 64 | int calc_light_value(int32_t x, int32_t y, light_patch *which); |
---|
[17] | 65 | void light_screen(image *sc, int32_t screenx, int32_t screeny, uint8_t *light_lookup, uint16_t ambient); |
---|
| 66 | void double_light_screen(image *sc, int32_t screenx, int32_t screeny, uint8_t *light_lookup, uint16_t ambient, |
---|
[16] | 67 | image *out, int32_t out_x, int32_t out_y); |
---|
[2] | 68 | |
---|
| 69 | void calc_light_table(palette *pal); |
---|
| 70 | extern light_source *first_light_source; |
---|
| 71 | extern int light_detail; |
---|
| 72 | |
---|
[16] | 73 | extern int32_t light_to_number(light_source *l); |
---|
| 74 | extern light_source *number_to_light(int32_t x); |
---|
[2] | 75 | |
---|
| 76 | #endif |
---|