bringing in the new year by changing every 2010 to 2011

This commit is contained in:
Bill Meltsner
2011-01-15 14:40:27 -06:00
parent a6a1e91976
commit fde708160e
256 changed files with 1074 additions and 1074 deletions
+43 -43
View File
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2006-2010 LOVE Development Team
* Copyright (c) 2006-2011 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
@@ -16,26 +16,26 @@
* 2. Altered source versions must be plainly marked as such, and must not be
* misrepresented as being the original software.
* 3. This notice may not be removed or altered from any source distribution.
**/
#include "Joystick.h"
**/
#include "Joystick.h"
// STD
#include <cmath>
namespace love
{
namespace joystick
{
namespace sdl
{
Joystick::Joystick()
: joysticks(0)
{
#include <cmath>
namespace love
{
namespace joystick
{
namespace sdl
{
Joystick::Joystick()
: joysticks(0)
{
// Init the SDL joystick system.
if(SDL_InitSubSystem(SDL_INIT_JOYSTICK) < 0)
throw Exception(SDL_GetError());
throw Exception(SDL_GetError());
// Start joystick event watching.
SDL_JoystickEventState(SDL_ENABLE);
@@ -44,11 +44,11 @@ namespace sdl
this->joysticks = (SDL_Joystick **)calloc(numjoysticks, sizeof(SDL_Joystick*));
for(int i = 0;i<numjoysticks;i++)
this->open(i);
}
Joystick::~Joystick()
{
this->open(i);
}
Joystick::~Joystick()
{
// Closes any open joysticks.
for(int i = 0; i != getNumJoysticks(); i++)
{
@@ -58,14 +58,14 @@ namespace sdl
free(joysticks);
SDL_QuitSubSystem(SDL_INIT_JOYSTICK);
}
const char * Joystick::getName() const
{
return "love.joystick.sdl";
}
SDL_QuitSubSystem(SDL_INIT_JOYSTICK);
}
const char * Joystick::getName() const
{
return "love.joystick.sdl";
}
bool Joystick::checkIndex(int index)
{
if(index < getNumJoysticks())
@@ -227,10 +227,10 @@ namespace sdl
SDL_JoystickClose(joysticks[index]);
joysticks[index] = 0;
}
}
EnumMap<Joystick::Hat, Uint8, Joystick::HAT_MAX_ENUM>::Entry Joystick::hatEntries[] =
{
}
EnumMap<Joystick::Hat, Uint8, Joystick::HAT_MAX_ENUM>::Entry Joystick::hatEntries[] =
{
{Joystick::HAT_CENTERED, SDL_HAT_CENTERED},
{Joystick::HAT_UP, SDL_HAT_UP},
{Joystick::HAT_RIGHT, SDL_HAT_RIGHT},
@@ -239,11 +239,11 @@ namespace sdl
{Joystick::HAT_RIGHTUP, SDL_HAT_RIGHTUP},
{Joystick::HAT_RIGHTDOWN, SDL_HAT_RIGHTDOWN},
{Joystick::HAT_LEFTUP, SDL_HAT_LEFTUP},
{Joystick::HAT_LEFTDOWN, SDL_HAT_LEFTDOWN},
};
EnumMap<Joystick::Hat, Uint8, Joystick::HAT_MAX_ENUM> Joystick::hats(Joystick::hatEntries, sizeof(Joystick::hatEntries));
} // sdl
} // joystick
} // love
{Joystick::HAT_LEFTDOWN, SDL_HAT_LEFTDOWN},
};
EnumMap<Joystick::Hat, Uint8, Joystick::HAT_MAX_ENUM> Joystick::hats(Joystick::hatEntries, sizeof(Joystick::hatEntries));
} // sdl
} // joystick
} // love