123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- /**
- * 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
- * arising from the use of this software.
- *
- * Permission is granted to anyone to use this software for any purpose,
- * including commercial applications, and to alter it and redistribute it
- * freely, subject to the following restrictions:
- *
- * 1. The origin of this software must not be misrepresented; you must not
- * claim that you wrote the original software. If you use this software
- * in a product, an acknowledgment in the product documentation would be
- * appreciated but is not required.
- * 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 "Graphics.h"
- namespace love
- {
- namespace graphics
- {
- Graphics::~Graphics()
- {
- }
- bool Graphics::getConstant(const char * in, DrawMode & out)
- {
- return drawModes.find(in, out);
- }
- bool Graphics::getConstant(DrawMode in, const char *& out)
- {
- return drawModes.find(in, out);
- }
- bool Graphics::getConstant(const char * in, AlignMode & out)
- {
- return alignModes.find(in, out);
- }
- bool Graphics::getConstant(AlignMode in, const char *& out)
- {
- return alignModes.find(in, out);
- }
- bool Graphics::getConstant(const char * in, BlendMode & out)
- {
- return blendModes.find(in, out);
- }
- bool Graphics::getConstant(BlendMode in, const char *& out)
- {
- return blendModes.find(in, out);
- }
- bool Graphics::getConstant(const char * in, ColorMode & out)
- {
- return colorModes.find(in, out);
- }
- bool Graphics::getConstant(ColorMode in, const char *& out)
- {
- return colorModes.find(in, out);
- }
- bool Graphics::getConstant(const char * in, LineStyle & out)
- {
- return lineStyles.find(in, out);
- }
- bool Graphics::getConstant(LineStyle in, const char *& out)
- {
- return lineStyles.find(in, out);
- }
- bool Graphics::getConstant(const char * in, PointStyle & out)
- {
- return pointStyles.find(in, out);
- }
- bool Graphics::getConstant(PointStyle in, const char *& out)
- {
- return pointStyles.find(in, out);
- }
- StringMap<Graphics::DrawMode, Graphics::DRAW_MAX_ENUM>::Entry Graphics::drawModeEntries[] =
- {
- { "line", Graphics::DRAW_LINE },
- { "fill", Graphics::DRAW_FILL },
- };
- StringMap<Graphics::DrawMode, Graphics::DRAW_MAX_ENUM> Graphics::drawModes(Graphics::drawModeEntries, sizeof(Graphics::drawModeEntries));
- StringMap<Graphics::AlignMode, Graphics::ALIGN_MAX_ENUM>::Entry Graphics::alignModeEntries[] =
- {
- { "left", Graphics::ALIGN_LEFT },
- { "right", Graphics::ALIGN_RIGHT },
- { "center", Graphics::ALIGN_CENTER },
- };
- StringMap<Graphics::AlignMode, Graphics::ALIGN_MAX_ENUM> Graphics::alignModes(Graphics::alignModeEntries, sizeof(Graphics::alignModeEntries));
- StringMap<Graphics::BlendMode, Graphics::BLEND_MAX_ENUM>::Entry Graphics::blendModeEntries[] =
- {
- { "alpha", Graphics::BLEND_ALPHA },
- { "additive", Graphics::BLEND_ADDITIVE },
- { "subtractive", Graphics::BLEND_SUBTRACTIVE },
- { "multiplicative", Graphics::BLEND_MULTIPLICATIVE },
- };
- StringMap<Graphics::BlendMode, Graphics::BLEND_MAX_ENUM> Graphics::blendModes(Graphics::blendModeEntries, sizeof(Graphics::blendModeEntries));
- StringMap<Graphics::ColorMode, Graphics::COLOR_MAX_ENUM>::Entry Graphics::colorModeEntries[] =
- {
- { "replace", Graphics::COLOR_REPLACE },
- { "modulate", Graphics::COLOR_MODULATE },
- };
- StringMap<Graphics::ColorMode, Graphics::COLOR_MAX_ENUM> Graphics::colorModes(Graphics::colorModeEntries, sizeof(Graphics::colorModeEntries));
- StringMap<Graphics::LineStyle, Graphics::LINE_MAX_ENUM>::Entry Graphics::lineStyleEntries[] =
- {
- { "smooth", Graphics::LINE_SMOOTH },
- { "rough", Graphics::LINE_ROUGH }
- };
- StringMap<Graphics::LineStyle, Graphics::LINE_MAX_ENUM> Graphics::lineStyles(Graphics::lineStyleEntries, sizeof(Graphics::lineStyleEntries));
- StringMap<Graphics::PointStyle, Graphics::POINT_MAX_ENUM>::Entry Graphics::pointStyleEntries[] =
- {
- { "smooth", Graphics::POINT_SMOOTH },
- { "rough", Graphics::POINT_ROUGH }
- };
- StringMap<Graphics::PointStyle, Graphics::POINT_MAX_ENUM> Graphics::pointStyles(Graphics::pointStyleEntries, sizeof(Graphics::pointStyleEntries));
- } // graphics
- } // love
|