Christian Heimke
Blimp v.1.2.1 (2006-08-01)
Christian Heimke commited c1b58a7 at 2011-07-15 09:18:32
BlinkenFrame.java
/* BlinkenLightsInteractiveMovieProgram
* version 1.2.1 date 2006-08-01
* Copyright (C) 2004-2005: Stefan Schuermans <1stein@schuermans.info>
* Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html
* a blinkenarea.org project
* powered by eventphone.de
*/
import java.awt.*;
public class BlinkenFrame
{
private int height;
private int width;
private int channels;
private int maxval;
private int duration;
private byte[][] data;
BlinkenFrame( int height, int width, int channels, int maxval, int duration )
{
if( height < 1 ) height = 1;
if( height > 1024 ) height = 1024;
if( width < 1 ) width = 1;
if( width > 1024 ) width = 1024;
if( channels < 1 ) channels = 1;
if( channels > 16 ) channels = 16;
if( maxval < 1 ) maxval = 1;
if( maxval > 255 ) maxval = 255;
if( duration < 1 ) duration = 1;
if( duration > 65535 ) duration = 65535;
this.height = height;
this.width = width;
this.channels = channels;
this.maxval = maxval;
this.duration = duration;
data = new byte[height][width * channels];
}
BlinkenFrame( BlinkenFrame frame )
{
int y, x, c, i;
height = frame.height;
width = frame.width;
channels = frame.channels;
maxval = frame.maxval;
duration = frame.duration;
data = new byte[height][width * channels];
for( y = 0; y < height; y++ )
 
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX