File tree 3 files changed +24
-7
lines changed
3 files changed +24
-7
lines changed Original file line number Diff line number Diff line change @@ -281,19 +281,19 @@ define(['./../generated_proto/sketch', // protoSketch
281
281
SrlShape . createFromProtobuf = function ( shape ) {
282
282
var interpretations = shape . interpretations ;
283
283
var subObjects = shape . subComponents ;
284
- var newShape = new SRL_Shape ( ) ;
284
+ var newShape = new SrlShape ( ) ;
285
285
for ( var i = 0 ; i < interpretations . length ; i ++ ) {
286
286
var protoInter = interpretations [ i ] ;
287
287
newShape . addInterpretation ( protoInter . label , protoInter . confidence , protoInter . complexity ) ;
288
288
}
289
289
290
290
for ( i = 0 ; i < subObjects . length ; i ++ ) {
291
291
var protoObject = subObjects [ i ] ;
292
- newShape . addSubObject ( objectConversionUtils . convertToUpgradedSketchObject ( protoObject ) ) ;
292
+ newShape . add ( objectConversionUtils . convertToUpgradedSketchObject ( protoObject ) ) ;
293
293
}
294
294
newShape . setId ( shape . getId ( ) ) ;
295
295
newShape . setName ( shape . getName ( ) ) ;
296
-
296
+ newShape . setTime ( shape . getTime ( ) ) ;
297
297
return newShape ;
298
298
} ;
299
299
Original file line number Diff line number Diff line change @@ -244,9 +244,9 @@ define(['./../generated_proto/sketch', // protoSketch
244
244
var array = [ ] ;
245
245
var points = this . getPoints ( ) ;
246
246
for ( var i = 0 ; i < points . length ; i ++ ) {
247
- array . push ( points [ i ] ) ;
247
+ array . push ( points [ i ] . sendToProtobuf ( ) ) ;
248
248
}
249
- proto . setPoints ( array ) ; // THIS FUNCTION SUCKS!
249
+ proto . setPoints ( array ) ; // this should verify the points are created correctly.
250
250
return proto ;
251
251
} ;
252
252
@@ -262,7 +262,7 @@ define(['./../generated_proto/sketch', // protoSketch
262
262
for ( var i in pointList ) {
263
263
if ( pointList . hasOwnProperty ( i ) ) {
264
264
var point = pointList [ i ] ;
265
- var currentPoint = SrlStroke . createFromProtobuf ( point ) ;
265
+ var currentPoint = SrlPoint . createFromProtobuf ( point ) ;
266
266
srlStroke . addPoint ( currentPoint ) ;
267
267
}
268
268
}
@@ -271,6 +271,7 @@ define(['./../generated_proto/sketch', // protoSketch
271
271
}
272
272
srlStroke . finish ( ) ;
273
273
srlStroke . setId ( stroke . getId ( ) ) ;
274
+ srlStroke . setTime ( stroke . getTime ( ) ) ;
274
275
return srlStroke ;
275
276
} ;
276
277
Original file line number Diff line number Diff line change @@ -37,10 +37,15 @@ describe('Shape Tests', function () {
37
37
for ( var i = 0 ; i < 10 ; i ++ ) {
38
38
var stroke = new SrlStroke ( ) ;
39
39
stroke . id = 'stroke' + i ;
40
- stroke . addPoint ( new SrlPoint ( x , y ) ) ;
40
+ var point = new SrlPoint ( x , y ) ;
41
+ point . setTime ( 50 ) ;
42
+ point . setId ( 'point' + i ) ;
43
+ stroke . addPoint ( point ) ;
41
44
strokeList . push ( stroke ) ;
45
+ stroke . setTime ( 60 ) ;
42
46
var shape = new SrlShape ( ) ;
43
47
shape . id = 'shape' + i ;
48
+ shape . setTime ( 70 ) ;
44
49
shapeList . push ( shape ) ;
45
50
}
46
51
} ) ;
@@ -73,5 +78,16 @@ describe('Shape Tests', function () {
73
78
expect ( shapeList [ 0 ] . getRecursiveStrokes ( ) ) . to . have . members ( [ strokeList [ 0 ] ] ) ;
74
79
expect ( shapeList [ 0 ] . getRecursiveSubObjects ( ) ) . to . have . members ( [ strokeList [ 0 ] ] ) ;
75
80
} ) ;
81
+
82
+ it ( 'should be able to encode and decode from binary protobuf correctly' , function ( ) {
83
+ for ( var i = 0 ; i < 9 ; i ++ ) {
84
+ shapeList [ i ] . add ( strokeList [ i ] ) ;
85
+ shapeList [ i ] . add ( shapeList [ i + 1 ] ) ;
86
+ }
87
+ var buffer = shapeList [ 0 ] . toArrayBuffer ( ) ;
88
+ var shape = SrlShape . decode ( buffer ) ;
89
+ // have deep members errors out. But contents were identical anyways
90
+ expect ( JSON . stringify ( [ shape . getRecursiveSubObjects ( ) ] ) ) . to . be . deep . equal ( JSON . stringify ( [ shapeList [ 0 ] . getRecursiveSubObjects ( ) ] ) ) ;
91
+ } ) ;
76
92
} ) ;
77
93
} ) ;
You can’t perform that action at this time.
0 commit comments