Kage Studio 0.7.240121
A Simple Free and Open Source 2D Animation Software
Loading...
Searching...
No Matches
layer.h
Go to the documentation of this file.
1/*
2 * Kage Studio - a simple free and open source vector-based 2D animation software
3 * Copyright (C) 2011~2024 Mj Mendoza IV
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18 * MA 02110-1301, USA. Or, see <https://www.gnu.org/licenses/>.
19 *
20 */
21#ifndef GTKMM_KAGE_LAYER_H
22 #define GTKMM_KAGE_LAYER_H
23
24 #include <vector>
25 #include "color.h"
26
27 #include "frame.h"
28 #include "../vectordatamanager.h"
29
31
32 #include <gdkmm/color.h>
33 class Kage; //forward declaration
34
35 class KageScene; //forward declaration
36
37 class KageLayer {
38 public:
39 unsigned int layerID;
40 std::vector<KageFrame*> Frames;
42
43 KageLayer(KageScene *p_scene, unsigned int p_layerID, unsigned int p_frameCount);
44 KageLayer operator=(const KageLayer &p_layer);
45 virtual ~KageLayer();
46 unsigned int getID();
47 bool selectAllFrame(bool p_selectAll);
48 bool addFrame();
49 void duplicateFrame();
50 void extendFrame();
51 bool removeFrame();
52 unsigned int getCurrentFrame();
53 void setCurrentFrame(unsigned int p_frame, bool p_addSelected);
54 void setCurrentFrameByID(unsigned int p_frameID);
55
56 bool removeAllFrames();
57
60 KageFrame *getFrameAt(unsigned int p_frame);
61 unsigned int getFrameNumberByID(unsigned int p_frameID);
62
63 void setSelected(KageFrame *p_frame);
64
65 std::vector<unsigned int> raiseSelectedShape(std::vector<unsigned int> p_selectedShapes);
66 std::vector<unsigned int> lowerSelectedShape(std::vector<unsigned int> p_selectedShapes);
67 std::vector<unsigned int> raiseToTopSelectedShape(std::vector<unsigned int> p_selectedShapes);
68 std::vector<unsigned int> lowerToBottomSelectedShape(std::vector<unsigned int> p_selectedShapes);
69 std::vector<unsigned int> groupSelectedShapes(std::vector<unsigned int> p_selectedShapes);
70 std::vector<unsigned int> ungroupSelectedShapes(std::vector<unsigned int> p_selectedShapes);
71 std::vector<unsigned int> duplicateShapes(std::vector<unsigned int> p_selectedShapes);
72 bool flipHorizontalSelectedShape(std::vector<unsigned int> p_selectedShapes);
73 bool flipVerticalSelectedShape(std::vector<unsigned int> p_selectedShapes);
74 bool doFlipVerticalSelectedShapeOn(unsigned int p_frameIndex, std::vector<unsigned int> p_selectedShapes);
75 bool doFlipVerticalSelectedShapeOnExtendedFrame(unsigned int p_frameIndex, std::vector<unsigned int> p_selectedShapes);
76
77 bool recenterRotationPoint(std::vector<unsigned int> p_selectedShapes);
78
79 bool addDataToFrame(VectorDataManager p_vectorsData);
80 bool setFrameData(VectorDataManager p_vectorsData);
81 VectorDataManager getFrameTweenData(unsigned int p_frameIndex);
83 VectorDataManager getFrameDataAt(unsigned int p_frame, bool p_frameOnion, bool p_layerOnion);
84 VectorDataManager getPreviousFrameData(unsigned int p_frameID);
85 bool setFrameDataToPreviousFrame(VectorDataManager p_vectorsData, unsigned int p_frameID);
86 bool addDataToPreviousFrame(VectorDataManager v, unsigned int p_frameID);
87
88 bool setPreviousFrameTween(unsigned int p_frameID, unsigned int p_tween);
89 bool setExtendedFrameTween(unsigned int p_frameID, unsigned int p_tween);
90 bool forceSetTween(unsigned int p_tween);
91 bool setTween(unsigned int p_tween);
92 unsigned int getTween();
93
95 bool switchToPreviousFrame(unsigned int p_frameID);
96 bool switchToNextFrame();
97 bool switchToNextFrame(unsigned int p_frameID);
98 bool isCurrentFrame(unsigned int p_frameID);
99 bool canReUseNextFrame();
100
101 void setFrameExtension(KageFrame::extension p_extension);
102 unsigned int getActiveFrameID();
103
104 unsigned int frameCtr;
105
107 unsigned int _currentFrameID;
108 unsigned int _currentFrameIndex;
109
110 bool moveToLeft();
111 bool moveToLeftAt(unsigned int p_frame);
112 bool moveToLeftMost();
113
114 unsigned int _activeFrame;
115
116 //GUI-related
119 bool _lock;
120 std::string _label;
121
122 //GUI-related
123 void setSelected(bool p_selected);
124 bool isSelected();
125
126 void setVisible(bool p_visible);
127 bool isVisible();
128 void toggleVisibility();
129
130 void setLock(bool p_lock);
131 bool isLocked();
132 void toggleLock();
133
134 void setLabel(std::string p_label);
135 std::string getLabel();
136 };
137#endif //GTKMM_KAGE_LAYER_H
Definition frame.h:34
extension
Definition frame.h:36
Definition kage.h:74
bool canReUseNextFrame()
Called by KageFrame when rendering.
Definition layer.cpp:1202
unsigned int getCurrentFrame()
Definition layer.cpp:542
std::string _label
Definition layer.h:120
bool switchToPreviousFrame()
Definition layer.cpp:1142
bool addDataToPreviousFrame(VectorDataManager v, unsigned int p_frameID)
Called by KageFrame if KageFrame is Extended.
Definition layer.cpp:1045
bool selectAllFrame(bool p_selectAll)
Definition layer.cpp:471
bool moveToLeftAt(unsigned int p_frame)
Moves Current Frame to Left.
Definition layer.cpp:350
bool setExtendedFrameTween(unsigned int p_frameID, unsigned int p_tween)
Definition layer.cpp:1067
void duplicateFrame()
Definition layer.cpp:147
bool doFlipVerticalSelectedShapeOnExtendedFrame(unsigned int p_frameIndex, std::vector< unsigned int > p_selectedShapes)
Definition layer.cpp:746
bool removeFrame()
Definition layer.cpp:211
std::string getLabel()
Definition layer.cpp:1281
bool setFrameDataToPreviousFrame(VectorDataManager p_vectorsData, unsigned int p_frameID)
Called by KageFrame if KageFrame is Extended.
Definition layer.cpp:1034
void toggleLock()
Definition layer.cpp:1270
bool isVisible()
Definition layer.cpp:1253
VectorDataManager getFrameData()
Definition layer.cpp:994
bool isLocked()
Definition layer.cpp:1267
KageFrame * _framePtr
Definition layer.h:41
unsigned int getID()
Definition layer.cpp:467
VectorDataManager getFrameTweenData(unsigned int p_frameIndex)
Definition layer.cpp:810
KageScene * getScene()
Definition layer.cpp:478
bool addFrame()
Definition layer.cpp:90
bool isSelected()
Definition layer.cpp:1246
void setCurrentFrameByID(unsigned int p_frameID)
std::vector< unsigned int > lowerSelectedShape(std::vector< unsigned int > p_selectedShapes)
Definition layer.cpp:615
std::vector< unsigned int > raiseSelectedShape(std::vector< unsigned int > p_selectedShapes)
Definition layer.cpp:600
std::vector< unsigned int > lowerToBottomSelectedShape(std::vector< unsigned int > p_selectedShapes)
Definition layer.cpp:645
std::vector< unsigned int > duplicateShapes(std::vector< unsigned int > p_selectedShapes)
Definition layer.cpp:692
void setCurrentFrame(unsigned int p_frame, bool p_addSelected)
Definition layer.cpp:488
KageFrame * getFrame()
Definition layer.cpp:555
KageLayer operator=(const KageLayer &p_layer)
Definition layer.cpp:46
bool moveToLeft()
Definition layer.cpp:328
unsigned int getFrameNumberByID(unsigned int p_frameID)
Definition layer.cpp:576
KageFrame * getFrameAt(unsigned int p_frame)
Definition layer.cpp:568
std::vector< KageFrame * > Frames
Definition layer.h:40
virtual ~KageLayer()
Definition layer.cpp:79
unsigned int getTween()
Definition layer.cpp:1124
bool recenterRotationPoint(std::vector< unsigned int > p_selectedShapes)
Definition layer.cpp:758
unsigned int _currentFrameID
Definition layer.h:107
bool moveToLeftMost()
Moves Current Frame to Left on indicated Frame.
Definition layer.cpp:370
std::vector< unsigned int > groupSelectedShapes(std::vector< unsigned int > p_selectedShapes)
Definition layer.cpp:661
unsigned int layerID
Definition layer.h:39
bool doFlipVerticalSelectedShapeOn(unsigned int p_frameIndex, std::vector< unsigned int > p_selectedShapes)
Definition layer.cpp:738
void toggleVisibility()
Definition layer.cpp:1256
bool isCurrentFrame(unsigned int p_frameID)
Called by KageFrame for navigating to Next Frame.
Definition layer.cpp:1190
void setSelected(KageFrame *p_frame)
Definition layer.cpp:591
bool _visible
Definition layer.h:118
bool flipHorizontalSelectedShape(std::vector< unsigned int > p_selectedShapes)
Definition layer.cpp:708
bool switchToNextFrame()
Called by KageFrame for navigating to Previous Frame.
Definition layer.cpp:1166
bool _lock
Definition layer.h:119
bool setTween(unsigned int p_tween)
Definition layer.cpp:1106
unsigned int _activeFrame
Moves Current Frame to Left.
Definition layer.h:114
unsigned int _currentFrameIndex
Definition layer.h:108
VectorDataManager getPreviousFrameData(unsigned int p_frameID)
NOTE: "Frame" – NOT "frame ID".
Definition layer.cpp:1023
void extendFrame()
Definition layer.cpp:391
void setVisible(bool p_visible)
Definition layer.cpp:1250
bool flipVerticalSelectedShape(std::vector< unsigned int > p_selectedShapes)
Definition layer.cpp:723
bool addDataToFrame(VectorDataManager p_vectorsData)
Definition layer.cpp:774
bool setFrameData(VectorDataManager p_vectorsData)
Definition layer.cpp:792
std::vector< unsigned int > ungroupSelectedShapes(std::vector< unsigned int > p_selectedShapes)
Definition layer.cpp:676
KageScene * _scene
Definition layer.h:106
unsigned int frameCtr
Definition layer.h:104
KageLayer(KageScene *p_scene, unsigned int p_layerID, unsigned int p_frameCount)
Definition layer.cpp:26
void setFrameExtension(KageFrame::extension p_extension)
Called by KageScene when duplicating Frame.
Definition layer.cpp:1220
void setLock(bool p_lock)
Definition layer.cpp:1264
bool forceSetTween(unsigned int p_tween)
Definition layer.cpp:1087
unsigned int getActiveFrameID()
Will return which Frame is currently active for editing or viewing.
Definition layer.cpp:1239
bool _selected
Definition layer.h:117
bool removeAllFrames()
Definition layer.cpp:452
bool setPreviousFrameTween(unsigned int p_frameID, unsigned int p_tween)
Called by KageFrame if KageFrame is Extended.
Definition layer.cpp:1056
std::vector< unsigned int > raiseToTopSelectedShape(std::vector< unsigned int > p_selectedShapes)
Definition layer.cpp:630
void setLabel(std::string p_label)
Definition layer.cpp:1278
VectorDataManager getFrameDataAt(unsigned int p_frame, bool p_frameOnion, bool p_layerOnion)
Definition layer.cpp:1010
Definition scene.h:41
Definition vectordatamanager.h:35