Update CI version
[carla.git] / source / frontend / carla
blobdd64ec4774a03110cd46db755796a4636512b551
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
4 # Carla plugin host
5 # Copyright (C) 2011-2022 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_app import (
23     CarlaApplication,
26 from carla_host import (
27     HostWindow,
28     initHost,
29     loadHostSettings,
32 from carla_shared import (
33     handleInitialCommandLineArguments,
34     setUpSignals,
37 # ----------------------------------------------------------------------------------------------------------------------
38 # Main
40 if __name__ == '__main__':
41     # ------------------------------------------------------------------------------------------------------------------
42     # Read CLI args
44     initName, libPrefix = handleInitialCommandLineArguments(__file__ if "__file__" in dir() else None)
46     # ------------------------------------------------------------------------------------------------------------------
47     # App initialization
49     app = CarlaApplication("Carla2", libPrefix)
51     # ------------------------------------------------------------------------------------------------------------------
52     # Set-up custom signal handling
54     setUpSignals()
56     # ------------------------------------------------------------------------------------------------------------------
57     # Init host backend
59     host = initHost(initName, libPrefix, False, False, True)
60     loadHostSettings(host)
62     # ------------------------------------------------------------------------------------------------------------------
63     # Create GUI
65     gui = HostWindow(host, True)
67     # ------------------------------------------------------------------------------------------------------------------
68     # Show GUI
70     gui.showIfNeeded()
72     # ------------------------------------------------------------------------------------------------------------------
73     # App-Loop
75     app.exit_exec()