cleanup, add copyright notice to LightsDriver_LinuxWeedTech.cpp

This commit is contained in:
AJ Kelly
2011-08-31 12:32:07 -05:00
parent ecb06dc68b
commit dd2aeb82f6
2 changed files with 45 additions and 30 deletions
+28 -11
View File
@@ -11,7 +11,7 @@
REGISTER_SOUND_DRIVER_CLASS(LinuxWeedTech); REGISTER_SOUND_DRIVER_CLASS(LinuxWeedTech);
// Begin serial driver // // Begin serial driver
static int fd = -1; static int fd = -1;
static LightsState CurLights; static LightsState CurLights;
@@ -65,9 +65,7 @@ static inline void SerialOpen()
} }
// End serial driver // // End serial driver //
/* Module maps (Dance mode)
/* Module maps
MODULE #A MODULE #A
Channel A: Marquee (Up-Left) Channel A: Marquee (Up-Left)
Channel B: Marquee (Up-Right) Channel B: Marquee (Up-Right)
@@ -101,7 +99,6 @@ static inline void SerialOpen()
Channel N: <not used> Channel N: <not used>
*/ */
LightsDriver_LinuxWeedTech::LightsDriver_LinuxWeedTech() LightsDriver_LinuxWeedTech::LightsDriver_LinuxWeedTech()
{ {
// Open port // Open port
@@ -178,7 +175,6 @@ void LightsDriver_LinuxWeedTech::Set( const LightsState *ls )
else if(cl == LIGHT_BASS_LEFT) {str[0] = 'A'; str[2] = 'G';} else if(cl == LIGHT_BASS_LEFT) {str[0] = 'A'; str[2] = 'G';}
else if(cl == LIGHT_BASS_RIGHT) {str[0] = 'A'; str[2] = 'H';} else if(cl == LIGHT_BASS_RIGHT) {str[0] = 'A'; str[2] = 'H';}
if( bOn ) if( bOn )
str[1]='L'; str[1]='L';
else else
@@ -216,10 +212,7 @@ void LightsDriver_LinuxWeedTech::Set( const LightsState *ls )
if(gb == GAME_BUTTON_START) {str[0] = 'A'; str[2] = 'F';} if(gb == GAME_BUTTON_START) {str[0] = 'A'; str[2] = 'F';}
} }
if( bOn ) str[1] = bOn ? 'L' : 'H';
str[1]='L';
else
str[1]='H';
if( str[0] != 0x00 ) if( str[0] != 0x00 )
{ {
@@ -230,5 +223,29 @@ void LightsDriver_LinuxWeedTech::Set( const LightsState *ls )
} }
} }
} }
} }
/*
* (c) 2003-2004 Kevin Slaughter
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, and/or sell copies of the Software, and to permit persons to
* whom the Software is furnished to do so, provided that the above
* copyright notice(s) and this permission notice appear in all copies of
* the Software and that both the above copyright notice(s) and this
* permission notice appear in supporting documentation.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/
+2 -4
View File
@@ -1,7 +1,5 @@
/* /* LightsDriver_LinuxWeedTech: Control lights with WTDIO-M from Weeder Technologies
* LightsDriver_LinuxWeedTech: Control lights with WTDIO-M from Weeder Technologies * http://www.weedtech.com / http://www.weedtech.com/wtdio-m.html */
* http://www.weedtech.com
*/
#ifndef LightsDriver_LinuxWeedTech_H #ifndef LightsDriver_LinuxWeedTech_H
#define LightsDriver_LinuxWeedTech_H #define LightsDriver_LinuxWeedTech_H