Update CI version
[carla.git] / source / frontend / carla-rest-frontend
blobe08ce0ad5b795bbe45dc8c0551cb72fade54ed16
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
4 # Carla plugin host
5 # Copyright (C) 2011-2018 Filipe Coelho <falktx@falktx.com>
7 # This program is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU General Public License as
9 # published by the Free Software Foundation; either version 2 of
10 # the License, or any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # For a full copy of the GNU General Public License see the doc/GPL.txt file.
19 # ----------------------------------------------------------------------------------------------------------------------
20 # Imports (Custom Stuff)
22 from carla_backend_qtweb import CarlaHostQtWeb
23 from carla_host import (
24     CarlaApplication,
25     HostWindow,
26     setUpSignals,
27     initHost,
28     loadHostSettings,
31 # ----------------------------------------------------------------------------------------------------------------------
32 # Main
34 if __name__ == '__main__':
35     # ------------------------------------------------------------------------------------------------------------------
36     # App initialization
38     app = CarlaApplication("Carla2-REST")
40     # ------------------------------------------------------------------------------------------------------------------
41     # Set-up custom signal handling
43     setUpSignals()
45     # ------------------------------------------------------------------------------------------------------------------
46     # Init host backend
48     host = initHost("Carla-REST", None, False, False, False, CarlaHostQtWeb)
49     loadHostSettings(host)
51     # ------------------------------------------------------------------------------------------------------------------
52     # Create GUI
54     gui = HostWindow(host, True)
56     # ------------------------------------------------------------------------------------------------------------------
57     # Show GUI
59     gui.show()
61     # ------------------------------------------------------------------------------------------------------------------
62     # App-Loop
64     app.exit_exec()