"""
Autogenerated python message buffer code.
Source: clad/types/alexaTypes.clad
Full command line: victor-clad/tools/message-buffers/emitters/Python_emitter.py -C src -I clad/src lib/util/source/anki/clad robot/clad/src coretech/vision/clad_src coretech/common/clad_src -o generated/cladPython clad/types/alexaTypes.clad
"""

from __future__ import absolute_import
from __future__ import print_function

def _modify_path():
  import inspect, os, sys
  search_paths = [
    '../..',
    '../../../../victor-clad/tools/message-buffers/support/python',
  ]
  currentpath = os.path.abspath(os.path.dirname(inspect.getfile(inspect.currentframe())))
  for search_path in search_paths:
    search_path = os.path.normpath(os.path.abspath(os.path.realpath(os.path.join(currentpath, search_path))))
    if search_path not in sys.path:
      sys.path.insert(0, search_path)
_modify_path()

import msgbuffers

Anki = msgbuffers.Namespace()
Anki.Vector = msgbuffers.Namespace()

class AlexaAuthState(object):
  "Automatically-generated uint_8 enumeration."
  Invalid        = 0
  Uninitialized  = 1
  RequestingAuth = 2
  WaitingForCode = 3
  Authorized     = 4

Anki.Vector.AlexaAuthState = AlexaAuthState
del AlexaAuthState


class AlexaUXState(object):
  "Automatically-generated uint_8 enumeration."
  Listening = 0
  Thinking  = 1
  Speaking  = 2
  Error     = 3
  Idle      = 4

Anki.Vector.AlexaUXState = AlexaUXState
del AlexaUXState


class AlexaSimpleState(object):
  "Automatically-generated uint_8 enumeration."
  Disabled = 0
  Idle     = 1
  Active   = 2

Anki.Vector.AlexaSimpleState = AlexaSimpleState
del AlexaSimpleState


class AlexaNetworkErrorType(object):
  "Automatically-generated uint_8 enumeration."
  NoError               = 0
  NoInitialConnection   = 1
  LostConnection        = 2
  HavingTroubleThinking = 3
  AuthRevoked           = 4

Anki.Vector.AlexaNetworkErrorType = AlexaNetworkErrorType
del AlexaNetworkErrorType


