diff --git a/ui/scripts/bytebuffer.js b/ui/scripts/protobufjs/bytebuffer.js similarity index 100% rename from ui/scripts/bytebuffer.js rename to ui/scripts/protobufjs/bytebuffer.js diff --git a/ui/scripts/long.js b/ui/scripts/protobufjs/long.js similarity index 100% rename from ui/scripts/long.js rename to ui/scripts/protobufjs/long.js diff --git a/ui/scripts/perimeter.js b/ui/scripts/protobufjs/perimeter.js similarity index 100% rename from ui/scripts/perimeter.js rename to ui/scripts/protobufjs/perimeter.js diff --git a/ui/scripts/protobuf.js b/ui/scripts/protobufjs/protobuf.js similarity index 100% rename from ui/scripts/protobuf.js rename to ui/scripts/protobufjs/protobuf.js diff --git a/ui/scripts/drawing.js b/ui/scripts/util/drawing.js similarity index 100% rename from ui/scripts/drawing.js rename to ui/scripts/util/drawing.js diff --git a/ui/scripts/waypoints_pb.js b/ui/scripts/waypoints_pb.js deleted file mode 100644 index ddbe7dd19d8..00000000000 --- a/ui/scripts/waypoints_pb.js +++ /dev/null @@ -1,220 +0,0 @@ -/** - * @fileoverview - * @enhanceable - * @public - */ -// GENERATED CODE -- DO NOT EDIT! - -var jspb = require('google-protobuf'); -var goog = jspb; -var global = Function('return this')(); - -goog.exportSymbol('proto.Waypoints', null, global); - -/** - * Generated by JsPbCodeGenerator. - * @param {Array=} opt_data Optional initial data array, typically from a - * server response, or constructed directly in Javascript. The array is used - * in place and becomes part of the constructed object. It is not cloned. - * If no data is provided, the constructed object will be empty, but still - * valid. - * @extends {jspb.Message} - * @constructor - */ -proto.Waypoints = function(opt_data) { - jspb.Message.initialize(this, opt_data, 0, -1, proto.Waypoints.repeatedFields_, null); -}; -goog.inherits(proto.Waypoints, jspb.Message); -if (goog.DEBUG && !COMPILED) { - proto.Waypoints.displayName = 'proto.Waypoints'; -} -/** - * List of repeated fields within this message type. - * @private {!Array} - * @const - */ -proto.Waypoints.repeatedFields_ = [1,2]; - - - -if (jspb.Message.GENERATE_TO_OBJECT) { -/** - * Creates an object representation of this proto suitable for use in Soy templates. - * Field names that are reserved in JavaScript and will be renamed to pb_name. - * To access a reserved field use, foo.pb_, eg, foo.pb_default. - * For the list of reserved names please see: - * com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS. - * @param {boolean=} opt_includeInstance Whether to include the JSPB instance - * for transitional soy proto support: http://goto/soy-param-migration - * @return {!Object} - */ -proto.Waypoints.prototype.toObject = function(opt_includeInstance) { - return proto.Waypoints.toObject(opt_includeInstance, this); -}; - - -/** - * Static version of the {@see toObject} method. - * @param {boolean|undefined} includeInstance Whether to include the JSPB - * instance for transitional soy proto support: - * http://goto/soy-param-migration - * @param {!proto.Waypoints} msg The msg instance to transform. - * @return {!Object} - */ -proto.Waypoints.toObject = function(includeInstance, msg) { - var f, obj = { - xList: jspb.Message.getField(msg, 1), - yList: jspb.Message.getField(msg, 2) - }; - - if (includeInstance) { - obj.$jspbMessageInstance = msg; - } - return obj; -}; -} - - -/** - * Deserializes binary data (in protobuf wire format). - * @param {jspb.ByteSource} bytes The bytes to deserialize. - * @return {!proto.Waypoints} - */ -proto.Waypoints.deserializeBinary = function(bytes) { - var reader = new jspb.BinaryReader(bytes); - var msg = new proto.Waypoints; - return proto.Waypoints.deserializeBinaryFromReader(msg, reader); -}; - - -/** - * Deserializes binary data (in protobuf wire format) from the - * given reader into the given message object. - * @param {!proto.Waypoints} msg The message object to deserialize into. - * @param {!jspb.BinaryReader} reader The BinaryReader to use. - * @return {!proto.Waypoints} - */ -proto.Waypoints.deserializeBinaryFromReader = function(msg, reader) { - while (reader.nextField()) { - if (reader.isEndGroup()) { - break; - } - var field = reader.getFieldNumber(); - switch (field) { - case 1: - var value = /** @type {!Array.} */ (reader.readPackedInt32()); - msg.setXList(value); - break; - case 2: - var value = /** @type {!Array.} */ (reader.readPackedInt32()); - msg.setYList(value); - break; - default: - reader.skipField(); - break; - } - } - return msg; -}; - - -/** - * Class method variant: serializes the given message to binary data - * (in protobuf wire format), writing to the given BinaryWriter. - * @param {!proto.Waypoints} message - * @param {!jspb.BinaryWriter} writer - */ -proto.Waypoints.serializeBinaryToWriter = function(message, writer) { - message.serializeBinaryToWriter(writer); -}; - - -/** - * Serializes the message to binary data (in protobuf wire format). - * @return {!Uint8Array} - */ -proto.Waypoints.prototype.serializeBinary = function() { - var writer = new jspb.BinaryWriter(); - this.serializeBinaryToWriter(writer); - return writer.getResultBuffer(); -}; - - -/** - * Serializes the message to binary data (in protobuf wire format), - * writing to the given BinaryWriter. - * @param {!jspb.BinaryWriter} writer - */ -proto.Waypoints.prototype.serializeBinaryToWriter = function (writer) { - var f = undefined; - f = this.getXList(); - if (f.length > 0) { - writer.writePackedInt32( - 1, - f - ); - } - f = this.getYList(); - if (f.length > 0) { - writer.writePackedInt32( - 2, - f - ); - } -}; - - -/** - * Creates a deep clone of this proto. No data is shared with the original. - * @return {!proto.Waypoints} The clone. - */ -proto.Waypoints.prototype.cloneMessage = function() { - return /** @type {!proto.Waypoints} */ (jspb.Message.cloneMessage(this)); -}; - - -/** - * repeated int32 x = 1; - * If you change this array by adding, removing or replacing elements, or if you - * replace the array itself, then you must call the setter to update it. - * @return {!Array.} - */ -proto.Waypoints.prototype.getXList = function() { - return /** @type {!Array.} */ (jspb.Message.getField(this, 1)); -}; - - -/** @param {Array.} value */ -proto.Waypoints.prototype.setXList = function(value) { - jspb.Message.setField(this, 1, value || []); -}; - - -proto.Waypoints.prototype.clearXList = function() { - jspb.Message.setField(this, 1, []); -}; - - -/** - * repeated int32 y = 2; - * If you change this array by adding, removing or replacing elements, or if you - * replace the array itself, then you must call the setter to update it. - * @return {!Array.} - */ -proto.Waypoints.prototype.getYList = function() { - return /** @type {!Array.} */ (jspb.Message.getField(this, 2)); -}; - - -/** @param {Array.} value */ -proto.Waypoints.prototype.setYList = function(value) { - jspb.Message.setField(this, 2, value || []); -}; - - -proto.Waypoints.prototype.clearYList = function() { - jspb.Message.setField(this, 2, []); -}; - - -goog.object.extend(exports, proto);