DataStream.prototype.readShort = function() {
  var output = this.data.readUInt16BE(this.position);
  this.position += 2;
  return output;
};