|
2 | 2 | * Created by David Windows on 5/17/2016.
|
3 | 3 | */
|
4 | 4 | define(['./../generated_proto/sketch', // protoSketch
|
| 5 | + './../generated_proto/commands', // protoCommands |
| 6 | + './../generated_proto/sketchUtil', // protoCommands |
5 | 7 | './../protobufUtils/classCreator', // protobufUtils
|
6 | 8 | "require" // require
|
7 | 9 | ], function (
|
| 10 | + protoCommands, |
8 | 11 | protoSketch,
|
| 12 | + protoSketchUtil, |
9 | 13 | protobufUtils,
|
10 | 14 | require) {
|
11 | 15 | var sketch = protoSketch.protobuf.srl.sketch;
|
| 16 | + var Commands = protoCommands.protobuf.srl.commands; |
| 17 | + var sketchUtil = protoSketchUtil.protobuf.srl.utils; |
12 | 18 |
|
13 | 19 | var ObjectType = sketch.ObjectType;
|
14 | 20 | var ObjectMessage = sketch.SrlObject;
|
@@ -137,11 +143,98 @@ define(['./../generated_proto/sketch', // protoSketch
|
137 | 143 | }
|
138 | 144 | };
|
139 | 145 |
|
| 146 | + /** |
| 147 | + * Given a protobuf Command array an SrlUpdate is created. |
| 148 | + * |
| 149 | + * It is important to node that an SrlUpdate implies that the commands |
| 150 | + * happened at the same time. |
| 151 | + * |
| 152 | + * @param {Array<SrlCommand>} commands - A list of commands stored as an array. |
| 153 | + * @return {SrlUpdate} An update that holds the list of given commands. |
| 154 | + */ |
| 155 | + var createUpdateFromCommands = function createUpdateFromCommands(commands) { |
| 156 | + var update = new Commands.SrlUpdate(); |
| 157 | + update.setCommands(commands); |
| 158 | + var n = protobufUtils.createTimeStamp(); |
| 159 | + update.setTime('' + n); |
| 160 | + update.setUpdateId(protobufUtils.generateUuid()); |
| 161 | + return update; |
| 162 | + }; |
| 163 | + |
| 164 | + /** |
| 165 | + * Given a protobuf Command array an SrlUpdate is created. |
| 166 | + * |
| 167 | + * It is important to node that an SrlUpdate implies that the commands |
| 168 | + * happened at the same time. |
| 169 | + * |
| 170 | + * @return {SrlUpdate} An empty update. |
| 171 | + */ |
| 172 | + var createBaseUpdate = function createBaseUpdate() { |
| 173 | + var update = new Commands.SrlUpdate(); |
| 174 | + var n = protobufUtils.createTimeStamp(); |
| 175 | + update.commands = []; |
| 176 | + update.setTime('' + n); |
| 177 | + update.setUpdateId(protobufUtils.generateUuid()); |
| 178 | + return update; |
| 179 | + }; |
| 180 | + |
| 181 | + /** |
| 182 | + * Creates a command given the commandType and if the user created. |
| 183 | + * |
| 184 | + * @param {CommandType} commandType - The enum object of the commandType (found at |
| 185 | + * CourseSketch.prutil.CommandType). |
| 186 | + * @param {Boolean} userCreated - True if the user created this command, false if the |
| 187 | + * command is system created. |
| 188 | + * @returns {SrlCommand} Creates a command with basic data. |
| 189 | + */ |
| 190 | + var createBaseCommand = function createBaseCommand(commandType, userCreated) { |
| 191 | + var command = new Commands.SrlCommand(); |
| 192 | + command.setCommandType(commandType); |
| 193 | + command.setIsUserCreated(userCreated); |
| 194 | + command.commandId = protobufUtils.generateUuid(); // unique ID |
| 195 | + return command; |
| 196 | + }; |
| 197 | + |
| 198 | + /** |
| 199 | + * Creates a new sketch command. |
| 200 | + * |
| 201 | + * @param {String} id - the id of the sketch, undefined if you want a random id given. |
| 202 | + * @param {Number} x - the x location of the sketch as an offset of its parent sketch. |
| 203 | + * @param {Number} y - the y location of the sketch as an offset of its parent sketch. |
| 204 | + * @param {Number} width - the width of the sketch. |
| 205 | + * @param {Number} height - the height of the sketch. |
| 206 | + * |
| 207 | + * @return {SrlCommand} a create sketch command |
| 208 | + */ |
| 209 | + var createNewSketch = function createNewSketch(id, x, y, width, height) { |
| 210 | + var command = createBaseCommand(Commands.CommandType.CREATE_SKETCH, false); |
| 211 | + var idChain = sketchUtil.IdChain(); |
| 212 | + if (!protobufUtils.isUndefined(id)) { |
| 213 | + idChain.idChain = [ id ]; |
| 214 | + } else { |
| 215 | + idChain.idChain = [ protobufUtils.generateUuid() ]; |
| 216 | + } |
| 217 | + var createSketchAction = new Commands.ActionCreateSketch(); |
| 218 | + createSketchAction.sketchId = idChain; |
| 219 | + createSketchAction.x = x || (x === 0 ? 0 : -1); |
| 220 | + createSketchAction.y = y || (y === 0 ? 0 : -1); |
| 221 | + createSketchAction.width = width || (width === 0 ? 0 : -1); |
| 222 | + createSketchAction.height = height || (height === 0 ? 0 : -1); |
| 223 | + command.setCommandData(createSketchAction.toArrayBuffer()); |
| 224 | + return command; |
| 225 | + }; |
| 226 | + |
140 | 227 | return {
|
141 | 228 | decode: decode,
|
142 | 229 | encodeSrlObject: encodeSrlObject,
|
143 | 230 | decodeSrlObject: decodeSrlObject,
|
144 |
| - convertToUpgradedSketchObject: convertToUpgradedSketchObject |
| 231 | + convertToUpgradedSketchObject: convertToUpgradedSketchObject, |
| 232 | + commands: { |
| 233 | + createUpdateFromCommands: createUpdateFromCommands, |
| 234 | + createBaseUpdate: createBaseUpdate, |
| 235 | + createBaseCommand: createBaseCommand, |
| 236 | + createNewSketch: createNewSketch |
| 237 | + } |
145 | 238 | };
|
146 | 239 |
|
147 | 240 | });
|
0 commit comments