Skip to content
image_generator.c 8.59 KiB
Newer Older
laurentc's avatar
laurentc committed
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 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
/* Includes ------------------------------------------------------------------*/
#include "stm32f3xx_hal.h"


/* USER CODE BEGIN Includes */
#include "led_driver.h"
#include "globals.h"
#include <string.h>
#include <math.h>
#include <stdlib.h>

/* USER CODE END Includes */

inline uint32_t getRawOffset(uint32_t column,uint32_t line)
{
	return 3*(column+line*NB_COLUMNS);
}


__attribute__((section("ccmram")))

float mysin[360];
float mycos[360];

void generateSinCosTable(void)
{
	int i;
	
	for (i=0;i<360;i++)
	{
		mysin[i] = sin(1.0f*i*M_PI/180);
		mycos[i] = cos(1.0f*i*M_PI/180);
	}
}

__attribute__((section("ccmram")))

float myfsin(float x)
{
	int i;
	
	x = x*180.0f/M_PI;
	i = fmod(x,360);
	
	if (i>=360)
	  crash(CC_CODE_SINCOS);
	if (i<0)
	{
		i+=360;
	}
	if (i<0)
		crash(CC_CODE_SINCOS);

	return mysin[i];
}

__attribute__((section("ccmram")))

float myfcos(float x)
{
	int i;
	
	x = x*180.0f/M_PI;
	i = fmod(x,360);
	
	if (i>=360)
	  crash(CC_CODE_SINCOS);
	if (i<0)
	{
		i+=360;
	}
	if (i<0)
		crash(CC_CODE_SINCOS);
	
	return mycos[i];
}

/*
float myfsin(float x)
{
	return sin(x);
}
float myfcos(float x)
{
	return cos(x);
}
*/

__attribute__((section("ccmram")))

uint8_t generatePlasma(uint8_t *raw,float u_time, uint8_t plasma_type, uint8_t intensity)
{
	uint32_t raw_offset;
	uint32_t line, column;
	float u_k[2];
  float v_coords[2];
  float v;
	float c[2];
	static uint8_t firstCall = 1;
	uint8_t x;
	uint8_t s1,s2,s4,c1;
	
	if (firstCall)
	{
		generateSinCosTable();
		firstCall = 0;
	}
	
	u_time = u_time/10;

	u_k[0] = u_k[1] = 4;
	
	for (line=0;line<NB_LINES;line++)
	{
		v_coords[1] = 1.0f*line/NB_LINES;
		
		for (column=0;column<NB_COLUMNS;column++)
		{
				v_coords[0] = 1.0f*column/NB_COLUMNS;
			
				raw_offset = getRawOffset(column, line);

				c[0] = u_k[0]*(v_coords[0] - 0.5f);
				c[1] = u_k[1]*(v_coords[1] - 0.5f);

				v = myfsin( c[0]+u_time);
				v += myfsin((c[1]+u_time)*0.5f);
				v += myfsin((c[0]+c[1]+u_time)*0.5f);
				c[0] += u_k[0]*0.5f * myfsin(u_time*0.33333f);
				c[1] += u_k[1]*0.5f * myfcos(u_time*0.5f);
				v += myfsin(sqrt(c[0]*c[0]+c[1]*c[1]+1.0f)+u_time);
				v = v*0.5f;

				switch(plasma_type)
				{
					// type RGB
					case 1:
					case 11:
					case 6:
					case 4:
					case 19:
					case 20:
										s1 = 127.5f*myfsin(M_PI*v)+127.5f;
										s2 = 127.5f*myfsin(M_PI*v+2.0f/3.0f*M_PI)+127.5f;
										s4 = 127.5f*myfsin(M_PI*v+4.0f/3.0f*M_PI)+127.5f;		
					break;
					// type 2 couleurs pures	
					case 2:
					case 16:
					case 18:
					// type 2 couleurs white
					case 3:
					case 12:
					case 17:
					case 14:
										s1 = 127.5f*myfsin(M_PI*v)+127.5f;
										c1 = 127.5f*myfcos(M_PI*v)+127.5f;
					break;

					case 13:
					case 15:
										c[0] = 0.5f+0.5f*myfsin(M_PI*v+4.0f/3.0f*M_PI);
					break;


	// 5

					default :
					break;
				}
				
				switch(plasma_type)
				{
// RGB Type					
					case 1:
					case 6:
					case 11:
					// RGB Type
					raw[raw_offset++] = (s1*intensity)>>8;
					raw[raw_offset++] = (s2*intensity)>>8;
					raw[raw_offset++] = (s4*intensity)>>8;		
					break;
					
					case 19:
					// RGB Type 2
					raw[raw_offset++] = (s2*intensity)>>8;
					raw[raw_offset++] = (s1*intensity)>>8;
					raw[raw_offset++] = (s4*intensity)>>8;		
					break;

					case 20:
					// RGB Type 3
					raw[raw_offset++] = (s4*intensity)>>8;		
					raw[raw_offset++] = (s2*intensity)>>8;
					raw[raw_offset++] = (s1*intensity)>>8;
					break;
// Yellow 
					case 4:
					// White Yellow Type
					raw[raw_offset++] = intensity; //(0.5f+0.5f*myfsin(M_PI*v))*255;
					raw[raw_offset++] = intensity; //(0.5f+0.5f*myfsin(M_PI*v+2.0f/3.0f*M_PI))*255;
					raw[raw_offset++] = (s4*intensity)>>8;		
					break;
					
// 2 Couleurs	pures				
					case 2:
					// RED GREEN TYPE
					raw[raw_offset++] = (s1*intensity)>>8;
					raw[raw_offset++] = (c1*intensity)>>8;
					raw[raw_offset++] = 0;						
					break;
					
					case 16:
					// VERT / BLEU
					raw[raw_offset++] = 0;
					raw[raw_offset++] = (c1*intensity)>>8;
					raw[raw_offset++] = (s1*intensity)>>8;
					break;

					case 18:
					// ROUGE / BLEU
					raw[raw_offset++] = (s1*intensity)>>8;
					raw[raw_offset++] = 0;
					raw[raw_offset++] = (c1*intensity)>>8;
					break;						
// Mix White
					case 3:
					// YELLOW/MAGENTA/PINK/WHITE TYPE
					raw[raw_offset++] = intensity;
					raw[raw_offset++] = (c1*intensity)>>8;
					raw[raw_offset++] = (s1*intensity)>>8;
					break;
					
					case 12:
					// CYAN/YELLOW/WHITE TYPE
					raw[raw_offset++] = (s1*intensity)>>8;
					raw[raw_offset++] = intensity;
					raw[raw_offset++] = (c1*intensity)>>8;
					break;						

					case 17:
					// MAGENTA/CYAN/WHITE
					raw[raw_offset++] = (s1*intensity)>>8;
					raw[raw_offset++] = (c1*intensity)>>8;
					raw[raw_offset++] = intensity;						
					break;
//
					case 14:
					// MAGENTA TYPE
					raw[raw_offset++] = intensity;
					raw[raw_offset++] = (s1*intensity)>>8;
					raw[raw_offset++] = intensity;
					break;

					case 5:
					// BLACK AND WHITE
					x = 127.5f*myfsin(M_PI*4.0f*v)+127.5f;
					raw[raw_offset++] = (x*intensity)>>8;
					raw[raw_offset++] = (x*intensity)>>8;
					raw[raw_offset++] = (x*intensity)>>8;	
					break;					
					
					case 13:
					// CYAN TYPE
					raw[raw_offset++] = (c[0]*c[0])*intensity;
					raw[raw_offset++] = intensity;
					raw[raw_offset++] = intensity;
					break;

					case 15:
					// MAGENTA TYPE DEEP
					raw[raw_offset++] = intensity;
					raw[raw_offset++] = (c[0]*c[0])*intensity;
					raw[raw_offset++] = intensity;
					break;

					default :
					raw[raw_offset++] = (0x80*intensity)>>8;
					raw[raw_offset++] = (0x80*intensity)>>8;
					raw[raw_offset++] = (0x80*intensity)>>8;
					break;
			}
		}
	}
	return 1;
	
}


uint8_t generateUniformColor(uint8_t *raw,uint8_t *color)
{
	uint32_t p=0;
	
	while (p<NB_PIXELS)
	{
		*raw++=color[0];
		*raw++=color[1];
		*raw++=color[2];
		p++;
	}
	return 0;
}

uint8_t generateBlack(uint8_t *raw)
{
	memset(raw,0,RAW_SIZE);	
	return 0;
}


uint8_t generateWhite(uint8_t *raw, uint8_t intensity)
{
	memset(raw,intensity,RAW_SIZE);	
	return 0;
}

uint8_t generateYellow(uint8_t *raw, uint8_t intensity)
{
	uint8_t color[3];
	
	color[0] = color[1] = intensity;
	color[2] = intensity>>2;
	generateUniformColor(raw,color);	

	return 0;
}

uint8_t generatePink(uint8_t *raw, uint8_t intensity)
{
	uint8_t color[3];
	
	color[0] = color[2] = intensity;
	color[1] = intensity>>2;
	generateUniformColor(raw,color);	

	return 0;
}

// 40/3 = 1.333
uint8_t generateRGB(uint8_t *raw, uint8_t intensity)
{
	int raw_offset;
	
	generateBlack(raw);

	// R
	raw_offset = getRawOffset(0, 0);
	raw[raw_offset] = intensity;
  raw_offset+=3;
	raw[raw_offset] = intensity;
	
	// G
	raw_offset = getRawOffset(13, 0);
	raw_offset++;
	raw[raw_offset] = intensity;
  raw_offset+=3;
	raw[raw_offset] = intensity;

	// B
	raw_offset = getRawOffset(27, 0);
	raw_offset++;
	raw_offset++;
	raw[raw_offset] = intensity;
  raw_offset+=3;
	raw[raw_offset] = intensity;
	
	return 0;
}

// POWER LIMITER CODE START
//#define MAX_LEDTUBE_LINE_POWER (NB_COLUMNS*3*POWER_LIMIT)

void powerLimiter(uint8_t *raw, uint8_t intensity)
{
	int line, column, i;
	uint8_t *p;
	uint16_t linePower;
	uint16_t maxLinePower;
	uint16_t ipowerReduction;
	int max_ledtube_line_power;
	
	p = raw;
	maxLinePower = 0;
	
	for (line=0;line<NB_LINES;line++)
	{
		linePower = 0;
		for (column=0;column<NB_COLUMNS;column++)
		{
			linePower+= p[0] + p[1] + p[2];
			p+=3;
		}
		if (linePower>maxLinePower)
			maxLinePower = linePower;
	}
	
//	if (intensity<POWER_LIMIT)
//		intensity = POWER_LIMIT;
	
	max_ledtube_line_power = (NB_COLUMNS*3*intensity);
	
	if (maxLinePower>max_ledtube_line_power)
	{
		ipowerReduction = (uint16_t) (256.0f*max_ledtube_line_power/maxLinePower);
		p=raw;
		
		i=RAW_SIZE;
		do
		{
			*p = ((*p)*ipowerReduction) >> 8;
			p++;
		} while(--i);
	}
}
// POWER LIMITER CODE END

uint8_t imageGenerator(uint32_t currentMode, uint8_t *raw, float time, uint8_t intensity)
{
	uint8_t dynamic;
	switch(currentMode)
	{
		case  1:
		case  2:
		case  3:
		case  4:
		case  5: dynamic = generatePlasma(raw,time,(uint8_t) currentMode, intensity); break;
		case  7: dynamic = generatePink(raw, intensity); break;
		case  8: dynamic = generateWhite(raw, intensity); break;
		case  9: dynamic = generateYellow(raw, intensity); break;
		case 10: dynamic = generateRGB(raw,intensity); break;
		case	6: 
	  case 11:
		case 12: 
		case 13:
		case 14:
		case 15:
		case 16:
		case 17:
		case 18:			
		case 19:			
		case 20: dynamic = generatePlasma(raw,time,(uint8_t) currentMode, intensity); break;
		case 21: dynamic = generateBlack(raw); break;
		default:return 0;
	}
#ifdef POWER_LIMITER
	powerLimiter(raw,intensity);
#endif
	return dynamic;
}