Welcome to mirror list, hosted at ThFree Co, Russian Federation.

COM_InputSocket.h « intern « compositor « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23490b66bbad1f6f23c7ce8f079a22b3d131d685 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/*
 * Copyright 2011, Blender Foundation.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 * Contributor: 
 *		Jeroen Bakker 
 *		Monique Dewanchand
 */

#ifndef _COM_InputSocket_h
#define _COM_InputSocket_h

#include <vector>
#include "COM_Socket.h"
#include "COM_SocketReader.h"

using namespace std;
class SocketConnection;
class Node;
class ExecutionSystem;
class OutputSocket;
class ChannelInfo;
class NodeOperation;

/**
 * @brief Resize modes of inputsockets
 * How are the input and working resolutions matched
 * @ingroup Model
 */
typedef enum InputSocketResizeMode {
	/** @brief Center the input image to the center of the working area of the node, no resizing occurs */
	COM_SC_CENTER = NS_CR_CENTER,
	/** @brief The bottom left of the input image is the bottom left of the working area of the node, no resizing occurs */
	COM_SC_NO_RESIZE = NS_CR_NONE,
	/** @brief Fit the width of the input image to the width of the working area of the node */
	COM_SC_FIT_WIDTH = NS_CR_FIT_WIDTH,
	/** @brief Fit the height of the input image to the height of the working area of the node */
	COM_SC_FIT_HEIGHT = NS_CR_FIT_HEIGHT,
	/** @brief Fit the width or the height of the input image to the width or height of the working area of the node, image will be larger than the working area */
	COM_SC_FIT = NS_CR_FIT,
	/** @brief Fit the width and the height of the input image to the width and height of the working area of the node, image will be equally larger than the working area */
	COM_SC_STRETCH = NS_CR_STRETCH
} InputSocketResizeMode;

/**
 * @brief InputSocket are sockets that can receive data/input
 * @ingroup Model
 */
class InputSocket : public Socket {
private:
	/**
	 * @brief connection connected to this InputSocket.
	 * An input socket can only have a single connection
	 */
	SocketConnection *m_connection;
	
	/**
	 * @brief resize mode of this socket
	 */
	InputSocketResizeMode m_resizeMode;
	
	
public:
	InputSocket(DataType datatype);
	InputSocket(DataType datatype, InputSocketResizeMode resizeMode);
	InputSocket(InputSocket *from);
	
	void setConnection(SocketConnection *connection);
	SocketConnection *getConnection();
	
	const int isConnected() const;
	int isInputSocket() const;
	
	/**
	 * @brief determine the resolution of this data going through this socket
	 * @param resolution the result of this operation
	 * @param preferredResolution the preferable resolution as no resolution could be determined
	 */
	void determineResolution(unsigned int resolution[2], unsigned int preferredResolution[2]);
	
	/**
	 * @brief move all connections of this input socket to another socket
	 * only use this method when already checked the availability of a SocketConnection
	 * @param relinkToSocket the socket to move to connections to
	 */
	void relinkConnections(InputSocket *relinkToSocket);
	
	/**
	 * @brief move all connections of this input socket to another socket
	 * @param relinkToSocket the socket to move to connections to
	 * @param editorNodeInputSocketIndex index of the socket number of the bNode (used to retrieve the value for autoconnection)
	 * @param system ExecutionSystem to update to
	 */
	void relinkConnections(InputSocket *relinkToSocket, int editorNodeInputSocketIndex, ExecutionSystem *system);
	
	/**
	 * @brief add a connection of this input socket to another socket
	 * @warning make sure to remove the original connection with \a unlinkConnections afterward.
	 * @param relinkToSocket the socket to move to connections to
	 * @param editorNodeInputSocketIndex index of the socket number of the bNode (used to retrieve the value for autoconnection)
	 * @param system ExecutionSystem to update to
	 */
	void relinkConnectionsDuplicate(InputSocket *relinkToSocket, int editorNodeInputSocketIndex, ExecutionSystem *system);
	
	/**
	 * @brief remove all connections of this input socket.
	 * @warning \a relinkConnectionsDuplicate should be used to ensure this socket is still connected.
	 * @param system ExecutionSystem to update to
	 */
	void unlinkConnections(ExecutionSystem *system);
	
	/**
	 * @brief set the resize mode
	 * @param resizeMode the new resize mode.
	 */
	void setResizeMode(InputSocketResizeMode resizeMode) {
		this->m_resizeMode = resizeMode;
	}
	
	/**
	 * @brief get the resize mode of this socket
	 * @return InputSocketResizeMode
	 */
	InputSocketResizeMode getResizeMode() const {
		return this->m_resizeMode;
	}
	
	const ChannelInfo *getChannelInfo(const int channelnumber);
	
	bool isStatic();
	
	SocketReader *getReader();
	NodeOperation *getOperation() const;
};

#endif