Skip to content

Commit e37e882

Browse files
committed
Added some utilities to the sketch framework for javascript
1 parent 8b83f15 commit e37e882

File tree

2 files changed

+123
-2
lines changed

2 files changed

+123
-2
lines changed

src/main/js/protobufUtils/classCreator.js

+29-1
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,37 @@ define([], function () {
6363
}
6464
};
6565

66+
/**
67+
* Generates an rfc4122 version 4 compliant solution.
68+
*
69+
* found at http://stackoverflow.com/a/2117523/2187510 and further improved at
70+
* http://stackoverflow.com/a/8809472/2187510
71+
* @returns {String} A unique id.
72+
*/
73+
function generateUuid() {
74+
var d = new Date().getTime();
75+
var uuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
76+
var r = (d + Math.random() * 16) % 16 | 0;
77+
d = Math.floor(d / 16);
78+
return (c === 'x' ? r : (r & 0x7 | 0x8)).toString(16);
79+
});
80+
return uuid;
81+
}
82+
83+
/**
84+
* Creates a number that represents the current time in milliseconds since jan 1st 1970.
85+
*
86+
* @return {Number} milliseconds since jan 1st 1970
87+
*/
88+
function createTimeStamp() {
89+
return new Date().getTime();
90+
}
91+
6692
return {
6793
isUndefined: isUndefined,
68-
Inherits: Inherits
94+
Inherits: Inherits,
95+
generateUuid: generateUuid,
96+
createTimeStamp: createTimeStamp
6997
};
7098

7199
});

src/main/js/protobufUtils/sketchProtoConverter.js

+94-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,19 @@
22
* Created by David Windows on 5/17/2016.
33
*/
44
define(['./../generated_proto/sketch', // protoSketch
5+
'./../generated_proto/commands', // protoCommands
6+
'./../generated_proto/sketchUtil', // protoCommands
57
'./../protobufUtils/classCreator', // protobufUtils
68
"require" // require
79
], function (
10+
protoCommands,
811
protoSketch,
12+
protoSketchUtil,
913
protobufUtils,
1014
require) {
1115
var sketch = protoSketch.protobuf.srl.sketch;
16+
var Commands = protoCommands.protobuf.srl.commands;
17+
var sketchUtil = protoSketchUtil.protobuf.srl.utils;
1218

1319
var ObjectType = sketch.ObjectType;
1420
var ObjectMessage = sketch.SrlObject;
@@ -137,11 +143,98 @@ define(['./../generated_proto/sketch', // protoSketch
137143
}
138144
};
139145

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+
140227
return {
141228
decode: decode,
142229
encodeSrlObject: encodeSrlObject,
143230
decodeSrlObject: decodeSrlObject,
144-
convertToUpgradedSketchObject: convertToUpgradedSketchObject
231+
convertToUpgradedSketchObject: convertToUpgradedSketchObject,
232+
commands: {
233+
createUpdateFromCommands: createUpdateFromCommands,
234+
createBaseUpdate: createBaseUpdate,
235+
createBaseCommand: createBaseCommand,
236+
createNewSketch: createNewSketch
237+
}
145238
};
146239

147240
});

0 commit comments

Comments
 (0)