summaryrefslogtreecommitdiff
path: root/src/aftereffects/DrawbotBot.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/aftereffects/DrawbotBot.h')
-rw-r--r--src/aftereffects/DrawbotBot.h89
1 files changed, 89 insertions, 0 deletions
diff --git a/src/aftereffects/DrawbotBot.h b/src/aftereffects/DrawbotBot.h
new file mode 100644
index 0000000..bd55ace
--- /dev/null
+++ b/src/aftereffects/DrawbotBot.h
@@ -0,0 +1,89 @@
+/*
+Copyright (c) 2003-2012 Sony Pictures Imageworks Inc., et al.
+All Rights Reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+* Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+* Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+* Neither the name of Sony Pictures Imageworks nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+*/
+
+
+#ifndef _DRAWBOTBOT_H_
+#define _DRAWBOTBOT_H_
+
+#include "AEGP_SuiteHandler.h"
+
+
+class DrawbotBot
+{
+ public:
+
+ DrawbotBot(struct SPBasicSuite *pica_basicP, PF_ContextH contextH, A_long appl_id);
+ ~DrawbotBot();
+
+ void MoveTo(DRAWBOT_PointF32 pos) { _brush_pos = pos; }
+ void MoveTo(float x, float y) { _brush_pos.x = x; _brush_pos.y = y; }
+ void Move(float x = 0, float y = 0) { _brush_pos.x += x; _brush_pos.y += y; }
+
+ void SetColor(PF_App_ColorType color, float a = 1.f);
+ void SetColor(DRAWBOT_ColorRGBA color) { _brush_color = color; }
+ void SetColor(float r, float g, float b, float a = 1.f)
+ { _brush_color.red = r; _brush_color.green = g;
+ _brush_color.blue = b; _brush_color.alpha = a; }
+
+ DRAWBOT_PointF32 Pos() const { return _brush_pos; }
+ float FontSize() const { return _font_size; }
+
+ void DrawLineTo(float x, float y, float brush_size = 0.5f);
+
+ void DrawRect(float w, float h, float brush_size = 0.5f) const;
+ void PaintRect(float w, float h) const;
+
+ void PaintTriangle(float w, float h) const;
+
+ void DrawString(const DRAWBOT_UTF16Char *str,
+ DRAWBOT_TextAlignment align = kDRAWBOT_TextAlignment_Default,
+ DRAWBOT_TextTruncation truncate = kDRAWBOT_TextTruncation_None,
+ float truncation_width = 0.f) const;
+ void DrawString(const char *str,
+ DRAWBOT_TextAlignment align = kDRAWBOT_TextAlignment_Default,
+ DRAWBOT_TextTruncation truncate = kDRAWBOT_TextTruncation_None,
+ float truncation_width = 0.f) const;
+
+
+ private:
+ AEGP_SuiteHandler suites;
+ A_long _appl_id;
+
+ DRAWBOT_SupplierSuiteCurrent *_suiteP;
+
+ DRAWBOT_DrawRef _drawbot_ref;
+ DRAWBOT_SupplierRef _supplier_ref;
+ DRAWBOT_SurfaceRef _surface_ref;
+
+ DRAWBOT_PointF32 _brush_pos;
+ DRAWBOT_ColorRGBA _brush_color;
+ float _font_size;
+};
+
+
+#endif // _DRAWBOTBOT_H_ \ No newline at end of file