summaryrefslogtreecommitdiffstats
path: root/Smoke/flowvis.c
blob: 3c6d637715aaa2e61b550dd8870f948683d7a7d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#ifdef G_OS_WIN32
#define WIN32_LEAN_AND_MEAN 1
#include <windows.h>
#endif


#include <rfftw.h>

#include "fluids.h"
#include "funcs.h"
#include "palette.h"

#include "flowvis.h"


static int flowvis_render = FALSE;

static int flowvis_num_colors = PALETTE_MAXCOLORS;

static int flowvis_colormap = PALETTE_BLACKWHITE;

static float flowvis_alpha = 1.0f;

static fftw_real *flowvis_frame;
static fftw_real **flowvis_history;

static int hisdex = 0;


void flowvis_set_hisdex(int arg)
{
  int idx = (fluids_get_hisdex() + 1) % HISTORY_SIZE;

  hisdex = (arg + idx) % HISTORY_SIZE;
}
 
int flowvis_get_hisdex(void)
{
  return hisdex;
}

void flowvis_set_render(int render_flowvis)
{
  flowvis_render = render_flowvis;
}

int flowvis_get_render(void)
{
  return flowvis_render;
}

void flowvis_set_num_colors(int num_colors)
{
  flowvis_num_colors = num_colors;
}

int flowvis_get_num_colors(void)
{
  return flowvis_num_colors;
}

void flowvis_set_colormap(int colormap)
{
  flowvis_colormap = colormap;
}

int flowvis_get_colormap(void)
{
  return flowvis_colormap;
}

void flowvis_set_alpha(float alpha)
{
  flowvis_alpha = alpha;
}

float flowvis_get_alpha(void)
{
  return flowvis_alpha;
}

void flowvis_set_frame(fftw_real *frame)
{
  flowvis_frame = frame;
}

fftw_real *flowvis_get_frame(void)
{
  return flowvis_frame;
}

void flowvis_set_history(fftw_real **history)
{
  flowvis_history = history;
}

fftw_real *flowvis_get_history(int hisdex)
{
  return flowvis_history[hisdex];
}

struct color4f flowvis_get_color(float value)
{
  struct color4f return_value;

  return_value = set_palette(flowvis_colormap, value, flowvis_num_colors);
  return_value.a = flowvis_alpha;

  return return_value;
}