├── src ├── launcher.h ├── mods.h ├── prefs.h ├── asma.gresource.xml ├── meson.build ├── menus.ui ├── asma.h ├── launcher.c ├── mods.c ├── prefs.c ├── asma.c ├── asma.glade └── preferences.glade ├── data ├── asma.png ├── screenshots │ └── screenshot-asma.png ├── asma.desktop ├── meson.build └── io.github.her001.Asma.gschema.xml ├── meson.build ├── .editorconfig ├── .gitignore ├── .travis.yml ├── meson_post_install.py ├── README.md ├── CODE_OF_CONDUCT.md └── LICENSE /src/launcher.h: -------------------------------------------------------------------------------- 1 | void play_game(); 2 | -------------------------------------------------------------------------------- /src/mods.h: -------------------------------------------------------------------------------- 1 | // File: mods.h 2 | 3 | void mods_refresh(); 4 | 5 | -------------------------------------------------------------------------------- /data/asma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/her001/Asma/HEAD/data/asma.png -------------------------------------------------------------------------------- /data/screenshots/screenshot-asma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/her001/Asma/HEAD/data/screenshots/screenshot-asma.png -------------------------------------------------------------------------------- /src/prefs.h: -------------------------------------------------------------------------------- 1 | void check_dir(); 2 | gboolean check_steam(); 3 | void update_and_check_dir(); 4 | void update_root_dir(); 5 | void select_a3_folder(); 6 | 7 | -------------------------------------------------------------------------------- /data/asma.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Name=Asma 4 | Comment=Simple Arma 3 launcher 5 | Icon=asma 6 | Exec=asma 7 | Categories=Game; 8 | StartupNotify=true 9 | 10 | -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- 1 | project('asma', 'c', meson_version: '>=0.36.0') 2 | 3 | add_project_link_arguments('-export-dynamic', language: 'c') 4 | 5 | subdir('src') 6 | subdir('data') 7 | 8 | meson.add_install_script('meson_post_install.py') 9 | 10 | -------------------------------------------------------------------------------- /src/asma.gresource.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | asma.glade 5 | menus.ui 6 | preferences.glade 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- 1 | install_data('asma.desktop', 2 | install_dir: 'share/applications') 3 | install_data('asma.png', 4 | install_dir: 'share/icons/hicolor/256x256/apps') 5 | install_data('io.github.her001.Asma.gschema.xml', 6 | install_dir: join_paths(get_option('datadir'), 'glib-2.0', 'schemas')) 7 | 8 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | insert_final_newline = true 6 | trim_trailing_whitespace = true 7 | charset = utf-8 8 | 9 | [*.{c,h}] 10 | indent_style = tab 11 | indent_size = 8 12 | 13 | [*.{ui,xml}] 14 | indent_style = tab 15 | indent_size = 4 16 | 17 | [*.glade] 18 | indent_style = space 19 | indent_size = 2 20 | 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Object files 2 | *.o 3 | *.ko 4 | *.obj 5 | *.elf 6 | 7 | # Precompiled Headers 8 | *.gch 9 | *.pch 10 | 11 | # Libraries 12 | *.lib 13 | *.a 14 | *.la 15 | *.lo 16 | 17 | # Shared objects (inc. Windows DLLs) 18 | *.dll 19 | *.so 20 | *.so.* 21 | *.dylib 22 | 23 | # Executables 24 | *.exe 25 | *.out 26 | *.app 27 | *.i*86 28 | *.x86_64 29 | *.hex 30 | 31 | # Debug files 32 | *.dSYM/ 33 | 34 | -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- 1 | gnome = import('gnome') 2 | 3 | deps = [dependency('gio-2.0'), 4 | dependency('glib-2.0'), 5 | dependency('gmodule-export-2.0'), 6 | dependency('gtk+-3.0')] 7 | 8 | src = ['asma.c', 'launcher.c', 'mods.c', 'prefs.c'] 9 | src += gnome.compile_resources('asma-resources', 10 | 'asma.gresource.xml', 11 | c_name: 'asma') 12 | 13 | executable('asma', src, 14 | dependencies: deps, 15 | install: true) 16 | 17 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: c 2 | 3 | env: PATH="$HOME/.local/bin:$PATH" 4 | 5 | addons: 6 | apt: 7 | packages: 8 | - libgtk-3-dev 9 | - python3-pip 10 | 11 | install: 12 | - pip3 install --user meson 13 | - wget https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-linux.zip 14 | - unzip ninja-linux.zip 15 | - mv ninja $HOME/.local/bin/ 16 | 17 | script: 18 | - meson builddir 19 | - cd builddir 20 | - ninja 21 | 22 | -------------------------------------------------------------------------------- /src/menus.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 | Preferences 8 | app.preferences 9 | 10 |
11 |
12 | 13 | About 14 | app.about 15 | 16 | 17 | Quit 18 | app.quit 19 | 20 |
21 |
22 |
23 | 24 | -------------------------------------------------------------------------------- /meson_post_install.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import os 4 | import subprocess 5 | 6 | prefix = os.environ.get('MESON_INSTALL_PREFIX','/usr/local') 7 | datadir = os.path.join(prefix, 'share') 8 | 9 | if 'DESTDIR' not in os.environ: 10 | print('Compiling gsettings schemas...') 11 | subprocess.call(['glib-compile-schemas', 12 | os.path.join(datadir, 'glib-2.0', 'schemas')]) 13 | 14 | print('Updating icon cache...') 15 | subprocess.call(['gtk-update-icon-cache', '-qtf', 16 | os.path.join(datadir, 'icons', 'hicolor')]) 17 | 18 | print('Updating desktop database...') 19 | subprocess.call(['update-desktop-database', '-q', 20 | os.path.join(datadir, 'applications')]) 21 | 22 | -------------------------------------------------------------------------------- /src/asma.h: -------------------------------------------------------------------------------- 1 | // File: "asma.h" 2 | // Author: Pau Busquets Aguiló 3 | #ifndef _COMMON_H 4 | #include 5 | #include 6 | #include 7 | 8 | #define DEFAULT_LAUNCH "steam -applaunch 107410" 9 | #define A3_MOD " -mod=" 10 | #define A3_WINDOW " -window" 11 | #define A3_NOSPLASH " -noSplash" 12 | #define A3_NOWORLD " -world=empty" 13 | #define A3_FILE_PATCHING " -filePatching" 14 | #define A3_DEBUG " -showScriptErrors" 15 | #define A3_PRIMUS " MESA_GL_VERSION_OVERRIDE=4.1 MESA_GLSL_VERSION_OVERRIDE=410 \%command\%" 16 | 17 | void browse_dir(); 18 | 19 | GFile *arma3_root; 20 | GtkBuilder *builder; 21 | GSettings *gset; 22 | GSettings *gset_a3; 23 | 24 | #define _COMMON_H 25 | #endif 26 | 27 | -------------------------------------------------------------------------------- /src/launcher.c: -------------------------------------------------------------------------------- 1 | #include "asma.h" 2 | #include "launcher.h" 3 | 4 | static gchar* mods_param() 5 | { 6 | GObject *mods_box; 7 | GList *mods_l; 8 | gchar *param; 9 | 10 | mods_box = gtk_builder_get_object(builder, "mods_list"); 11 | mods_l = gtk_container_get_children(GTK_CONTAINER (mods_box)); 12 | 13 | param = ""; 14 | while (mods_l) { 15 | GtkButton *b; 16 | b = GTK_BUTTON (gtk_bin_get_child(mods_l->data)); 17 | if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(b))) 18 | param = g_strconcat(param, gtk_button_get_label(b), "\\\\;", NULL); 19 | mods_l = mods_l->next; 20 | } 21 | 22 | if(!g_str_equal(param, "")) 23 | param = g_strconcat(A3_MOD, param, NULL); 24 | 25 | return param; 26 | } 27 | 28 | static gchar* get_command() 29 | { 30 | gchar *command; 31 | 32 | command = DEFAULT_LAUNCH; 33 | if (g_settings_get_boolean(gset_a3, "force-windowed")) 34 | command = g_strconcat(command, A3_WINDOW, NULL); 35 | if (!g_settings_get_boolean(gset_a3, "show-splash")) 36 | command = g_strconcat(command, A3_NOSPLASH, NULL); 37 | if (!g_settings_get_boolean(gset_a3, "show-world")) 38 | command = g_strconcat(command, A3_NOWORLD, NULL); 39 | if (g_settings_get_boolean(gset_a3, "show-script-errors")) 40 | command = g_strconcat(command, A3_DEBUG, NULL); 41 | if (g_settings_get_boolean(gset_a3, "file-patching")) 42 | command = g_strconcat(command, A3_FILE_PATCHING, NULL); 43 | command = g_strconcat(command, mods_param(), NULL); 44 | 45 | return command; 46 | } 47 | 48 | void play_game() 49 | { 50 | gchar *command; 51 | 52 | command = get_command(); 53 | g_spawn_command_line_async(command, NULL); 54 | } 55 | 56 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [Asma](https://gitlab.com/her0/asma) 2 | 3 | Copyright © 2016, 2017 Andrew "HER0" Conrad 4 | 5 | Copyright © 2016 Pau Busquets Aguiló 6 | 7 | **Asma** is a simple Arma 3 launcher for Linux. 8 | 9 | ![alt text](data/screenshots/screenshot-asma.png "Asma Window with Mod Selection") 10 | 11 | The primary purpose is to provide a GUI for selecting modifications to launch 12 | the game with. In addition, some common game options can be toggled, which are 13 | remembered between uses. Note that Asma may be functional on macOS, but this is 14 | untested. 15 | 16 | Asma is made available under the terms of the GNU GPL version 3. See `LICENSE` 17 | for details. 18 | 19 | ## Requirements 20 | 21 | * [Arma 3](http://store.steampowered.com/app/107410) (obviously) 22 | * [GTK+ 3](https://www.gtk.org/download/index.php) 23 | * [Meson](https://github.com/mesonbuild/meson/releases) ≥ 0.36.0 and [Ninja](https://github.com/ninja-build/ninja/releases) (for building and installing) 24 | 25 | Any mods should be in the Arma 3 folder (linking works) and start with the "@" 26 | character. 27 | 28 | ## Installation 29 | 30 | The following are generic build instructions. For more specific instructions, 31 | please visit the [wiki](https://gitlab.com/her0/Asma/wikis/build-instructions). 32 | 33 | First, clone the project and switch to the directory: 34 | 35 | ``` 36 | git clone https://gitlab.com/her0/asma.git 37 | cd asma 38 | ``` 39 | 40 | Next, configure and build: 41 | 42 | ``` 43 | meson builddir 44 | cd builddir 45 | ninja 46 | ``` 47 | 48 | Finally, install (as root): 49 | 50 | ``` 51 | ninja install 52 | ``` 53 | 54 | ## Contributing 55 | 56 | By participating in Asma, you agree to the terms set forth by the 57 | Contributor Covenant. See `CODE_OF_CONDUCT.md` for details. 58 | 59 | Issues or pull requests can be filed on the GitLab 60 | [issue tracker](https://gitlab.com/her0/asma/issues). 61 | 62 | -------------------------------------------------------------------------------- /data/io.github.her001.Asma.gschema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | true 5 | Prefer dark theme 6 | 7 | Use the dark variant of the GTK theme, if available. 8 | 9 | 10 | 11 | 12 | 13 | ".local/share/Steam/steamapps/common/Arma 3" 14 | Path to Arma 3 directory 15 | 16 | If the path is relative, it will be appended to the user's home directory. 17 | 18 | 19 | 20 | false 21 | Launch in windowed mode 22 | 23 | This overrides the in-game setting for windowed or fullscreen mode. 24 | 25 | 26 | 27 | true 28 | Show the splash screens 29 | 30 | Disable for (slightly) faster startup times. 31 | 32 | 33 | 34 | true 35 | Show world in the background of the main menu 36 | 37 | When enabled, the main menu has the default terrain visible in the background. 38 | 39 | Disable for faster startup times. 40 | 41 | 42 | 43 | false 44 | Show script errors on-screen 45 | 46 | NOTE: In the Eden Editor, script errors are always shown, even if this is disabled. 47 | 48 | 49 | 50 | false 51 | Allow game to load unpacked data 52 | 53 | Modifications do not need to be packed into a PBO file. 54 | Recommended only for development purposes. 55 | 56 | 57 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /src/mods.c: -------------------------------------------------------------------------------- 1 | // File: "mods.c" 2 | 3 | #include "asma.h" 4 | #include "mods.h" 5 | #include "prefs.h" 6 | 7 | static void toggle_image(GtkButton *button, 8 | gpointer user_data) 9 | { 10 | if (gtk_button_get_always_show_image(button)) 11 | gtk_button_set_always_show_image(button, FALSE); 12 | else 13 | gtk_button_set_always_show_image(button, TRUE); 14 | } 15 | 16 | static GtkWidget* create_list_item(gpointer item, 17 | gpointer user_data) 18 | { 19 | GtkWidget *check; 20 | 21 | check = gtk_image_new_from_icon_name("object-select-symbolic", GTK_ICON_SIZE_BUTTON); 22 | gtk_widget_set_margin_start(check, 6); 23 | gtk_button_set_image(GTK_BUTTON (item), check); 24 | gtk_button_set_image_position(GTK_BUTTON(item), GTK_POS_RIGHT); 25 | gtk_button_set_relief(item, GTK_RELIEF_NONE); 26 | g_signal_connect(item, "toggled", (gpointer) &toggle_image, NULL); 27 | return GTK_WIDGET (item); 28 | } 29 | 30 | static gint sort_alpha(const void *a, 31 | const void *b, 32 | void *user_data) 33 | { 34 | const gchar *x = gtk_button_get_label(GTK_BUTTON (a)); 35 | const gchar *y = gtk_button_get_label(GTK_BUTTON (b)); 36 | return g_strcmp0((gchar *) x, (gchar *) y); 37 | } 38 | 39 | static GListStore* get_local_mods() 40 | { 41 | GDir *dir; 42 | GListStore *mods; 43 | gchar *entry = ""; 44 | 45 | mods = g_list_store_new(g_type_from_name("GtkToggleButton")); 46 | 47 | dir = g_dir_open(g_file_get_path(arma3_root), 0, NULL); 48 | if (dir == NULL) { 49 | return mods; 50 | } 51 | 52 | do { 53 | if (g_str_has_prefix(entry, "@")) { 54 | const gchar *abs_path; 55 | abs_path = g_file_get_path(g_file_get_child(arma3_root, entry)); 56 | if (g_file_test(abs_path, G_FILE_TEST_IS_DIR)) { 57 | GtkToggleButton *button; 58 | button = GTK_TOGGLE_BUTTON (gtk_toggle_button_new_with_label(entry)); 59 | g_list_store_append(mods, (gpointer) button); 60 | } 61 | } 62 | entry = g_strdup(g_dir_read_name(dir)); 63 | } while (entry != NULL); 64 | 65 | g_list_store_sort(mods, &sort_alpha, NULL); 66 | g_dir_close(dir); 67 | return mods; 68 | } 69 | 70 | void mods_refresh(GtkWidget *widget, 71 | gpointer user_data) 72 | { 73 | GListModel *local_mods_store; 74 | GtkListBox *mods_list; 75 | 76 | local_mods_store = G_LIST_MODEL (get_local_mods()); 77 | mods_list = GTK_LIST_BOX (gtk_builder_get_object(builder, "mods_list")); 78 | 79 | gtk_list_box_bind_model(mods_list, local_mods_store, create_list_item, 80 | NULL, NULL); 81 | } 82 | 83 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, gender identity and expression, level of experience, 9 | nationality, personal appearance, race, religion, or sexual identity and 10 | orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at aconrad103@gmail.com. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at [http://contributor-covenant.org/version/1/4][version] 72 | 73 | [homepage]: http://contributor-covenant.org 74 | [version]: http://contributor-covenant.org/version/1/4/ 75 | -------------------------------------------------------------------------------- /src/prefs.c: -------------------------------------------------------------------------------- 1 | #include "asma.h" 2 | #include "mods.h" 3 | #include "prefs.h" 4 | 5 | static void destroy_bars(GtkWidget *widget, 6 | gpointer data) 7 | { 8 | if (GTK_IS_INFO_BAR(widget)) 9 | gtk_widget_destroy(widget); 10 | } 11 | 12 | static void info_bar_response(GtkInfoBar *info_bar, 13 | gint response_id, 14 | gpointer user_data) 15 | { 16 | switch (response_id) { 17 | case 1: 18 | select_a3_folder(NULL, NULL); 19 | break; 20 | case 2: 21 | gtk_widget_destroy(GTK_WIDGET (info_bar)); 22 | check_steam(TRUE); 23 | break; 24 | case GTK_RESPONSE_CLOSE: 25 | gtk_widget_destroy(GTK_WIDGET (info_bar)); 26 | } 27 | } 28 | 29 | static void clear_info_bar() 30 | { 31 | GtkContainer *app_box; 32 | 33 | app_box = GTK_CONTAINER (gtk_builder_get_object(builder, "app_box")); 34 | gtk_container_foreach(app_box, (GtkCallback) destroy_bars, NULL); 35 | } 36 | 37 | static void show_info_bar(gchar *message) 38 | { 39 | GtkBox *app_box; 40 | GtkInfoBar *bar; 41 | GtkWidget *label; 42 | gchar *button_message; 43 | GtkResponseType response; 44 | 45 | if (check_steam(FALSE)) { 46 | label = GTK_WIDGET (gtk_label_new(message)); 47 | button_message = "_Select Folder"; 48 | response = 1; 49 | } else { 50 | label = GTK_WIDGET (gtk_label_new("Steam not found! Please install Steam.")); 51 | button_message = "_Done"; 52 | response = 2; 53 | } 54 | 55 | app_box = GTK_BOX (gtk_builder_get_object(builder, "app_box")); 56 | bar = GTK_INFO_BAR (gtk_info_bar_new_with_buttons(button_message, response, NULL)); 57 | clear_info_bar(); 58 | 59 | gtk_box_pack_start(GTK_BOX (gtk_info_bar_get_content_area(bar)), label, FALSE, FALSE, 0); 60 | gtk_info_bar_set_message_type(bar, GTK_MESSAGE_WARNING); 61 | gtk_info_bar_set_show_close_button(bar, TRUE); 62 | g_signal_connect(GTK_WIDGET (bar), "response", G_CALLBACK (info_bar_response), NULL); 63 | 64 | gtk_box_pack_start(app_box, GTK_WIDGET (bar), FALSE, FALSE, 0); 65 | gtk_info_bar_set_default_response(bar, response); 66 | gtk_widget_show_all(GTK_WIDGET (bar)); 67 | } 68 | 69 | gboolean check_steam(gboolean show_bar) 70 | { 71 | GtkWidget *button; 72 | gboolean present; 73 | 74 | button = GTK_WIDGET (gtk_builder_get_object(builder, "play_button")); 75 | present = (g_find_program_in_path("steam") != NULL); 76 | if ((!present) && show_bar) 77 | show_info_bar(""); 78 | gtk_widget_set_sensitive(button, present); 79 | return present; 80 | } 81 | 82 | void update_root_dir(GSettings *settings, 83 | gchar *key, 84 | gpointer user_data) 85 | { 86 | gchar *path; 87 | 88 | g_settings_sync(); 89 | path = g_settings_get_string(settings, key); 90 | if (!g_path_is_absolute(path)) 91 | path = g_strconcat(g_get_home_dir(), "/", path, NULL); 92 | arma3_root = g_file_new_for_path(path); 93 | } 94 | 95 | void check_dir() 96 | { 97 | gchar *bin; 98 | GtkWidget *browse; 99 | GtkWidget *refresh; 100 | 101 | browse = GTK_WIDGET (gtk_builder_get_object(builder, "browse_dir_button")); 102 | refresh = GTK_WIDGET (gtk_builder_get_object(builder, "refresh_button")); 103 | 104 | if (g_file_query_file_type(arma3_root, G_FILE_QUERY_INFO_NONE, NULL) != G_FILE_TYPE_DIRECTORY) { 105 | show_info_bar("Arma 3 folder not found."); 106 | gtk_widget_set_sensitive(browse, FALSE); 107 | gtk_widget_set_sensitive(refresh, FALSE); 108 | } else { 109 | gtk_widget_set_sensitive(browse, TRUE); 110 | bin = g_file_get_path(g_file_get_child(arma3_root, "arma3")); 111 | if (g_find_program_in_path(bin) == NULL) { 112 | show_info_bar("Arma 3 folder is invalid."); 113 | gtk_widget_set_sensitive(refresh, FALSE); 114 | } else { 115 | clear_info_bar(); 116 | gtk_widget_set_sensitive(refresh, TRUE); 117 | } 118 | } 119 | mods_refresh(); 120 | } 121 | 122 | void update_and_check_dir(GSettings *settings, 123 | gchar *key, 124 | gpointer user_data) 125 | { 126 | update_root_dir(settings, key, user_data); 127 | check_dir(); 128 | } 129 | 130 | void select_a3_folder(GtkButton *button, 131 | gpointer user_data) 132 | { 133 | GtkWidget *dialog; 134 | GtkApplication *app; 135 | GtkFileChooserAction action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER; 136 | gint res; 137 | app = gtk_builder_get_application(builder); 138 | dialog = gtk_file_chooser_dialog_new("Select Arma 3 Folder", 139 | gtk_application_get_window_by_id(app, 1), 140 | action, 141 | ("_Cancel"), 142 | GTK_RESPONSE_CANCEL, 143 | ("_Open"), 144 | GTK_RESPONSE_ACCEPT, 145 | NULL); 146 | res = gtk_dialog_run(GTK_DIALOG (dialog)); 147 | if (res == GTK_RESPONSE_ACCEPT) { 148 | GObject *e; 149 | gchar *path; 150 | e = gtk_builder_get_object(builder, "a3_dir_entry"); 151 | path = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER (dialog)); 152 | gtk_entry_set_text(GTK_ENTRY (e), path); 153 | } 154 | 155 | g_object_unref(dialog); 156 | } 157 | 158 | -------------------------------------------------------------------------------- /src/asma.c: -------------------------------------------------------------------------------- 1 | // File: "asma.c" 2 | // Author: Pau Busquets Aguiló 3 | 4 | #include "asma.h" 5 | #include "mods.h" 6 | #include "prefs.h" 7 | 8 | static GActionEntry app_entries[]; 9 | 10 | static void about_activated(); 11 | static void preferences_activated(); 12 | static void quit_activated(); 13 | static void init_builder(); 14 | 15 | static GActionEntry app_entries[3] = { 16 | {"about", about_activated, NULL, NULL, NULL}, 17 | {"preferences", preferences_activated, NULL, NULL, NULL}, 18 | {"quit", quit_activated, NULL, NULL, NULL}, 19 | }; 20 | 21 | static void about_activated(GSimpleAction *action, 22 | GVariant *parameter, 23 | gpointer user_data) 24 | { 25 | GtkWindow *dialog; 26 | GtkApplication *app = user_data; 27 | 28 | dialog = GTK_WINDOW (gtk_builder_get_object(builder, "about_dialog")); 29 | gtk_window_set_application(dialog, app); 30 | 31 | gtk_window_present(dialog); 32 | } 33 | 34 | static void preferences_activated(GSimpleAction *action, 35 | GVariant *parameter, 36 | gpointer user_data) 37 | { 38 | GtkWindow *prefs; 39 | GtkApplication *app = user_data; 40 | 41 | prefs = gtk_application_get_window_by_id(app, 2); 42 | 43 | gtk_window_present(prefs); 44 | } 45 | 46 | static void quit_activated(GSimpleAction *action, 47 | GVariant *parameter, 48 | gpointer user_data) 49 | { 50 | GApplication *app = G_APPLICATION (user_data); 51 | g_application_quit(app); 52 | } 53 | 54 | void destroy(GtkWindow *window, 55 | gpointer *user_data) 56 | { 57 | GActionMap *am; 58 | GAction *action; 59 | 60 | am = G_ACTION_MAP (gtk_window_get_application(window)); 61 | action = g_action_map_lookup_action(am, "quit"); 62 | g_action_activate(action, NULL); 63 | } 64 | 65 | void browse_dir() 66 | { 67 | GError *error = NULL; 68 | if (!g_app_info_launch_default_for_uri(g_file_get_uri(arma3_root), NULL, &error)) 69 | g_warning("Browsing game folder failed: %s\n", error->message); 70 | } 71 | 72 | static void bind_settings() 73 | { 74 | g_settings_bind(gset_a3, "game-path", 75 | gtk_builder_get_object(builder, "a3_dir_entry"), 76 | "text", G_SETTINGS_BIND_DEFAULT); 77 | g_settings_bind(gset_a3, "force-windowed", 78 | gtk_builder_get_object(builder, "a3_windowed_check"), 79 | "active", G_SETTINGS_BIND_DEFAULT); 80 | g_settings_bind(gset_a3, "show-splash", 81 | gtk_builder_get_object(builder, "a3_splash_check"), 82 | "active", G_SETTINGS_BIND_DEFAULT); 83 | g_settings_bind(gset_a3, "show-world", 84 | gtk_builder_get_object(builder, "a3_world_check"), 85 | "active", G_SETTINGS_BIND_DEFAULT); 86 | g_settings_bind(gset_a3, "show-script-errors", 87 | gtk_builder_get_object(builder, "a3_script_err_check"), 88 | "active", G_SETTINGS_BIND_DEFAULT); 89 | g_settings_bind(gset_a3, "file-patching", 90 | gtk_builder_get_object(builder, "a3_file_patching_check"), 91 | "active", G_SETTINGS_BIND_DEFAULT); 92 | g_object_set(gtk_settings_get_default(), "gtk-application-prefer-dark-theme", 93 | g_settings_get_boolean(gset, "prefer-dark-theme"), NULL); 94 | } 95 | 96 | static void activate(GtkApplication *app) 97 | { 98 | GtkWindow *window; 99 | GtkWindow *prefs; 100 | GtkWidget *placeholder; 101 | 102 | g_assert(GTK_IS_APPLICATION (app)); 103 | 104 | init_builder(); 105 | 106 | g_action_map_add_action_entries(G_ACTION_MAP (app), 107 | app_entries, G_N_ELEMENTS (app_entries), 108 | app); 109 | 110 | window = GTK_WINDOW (gtk_builder_get_object(builder, "app_window")); 111 | gtk_window_set_application(window, app); 112 | placeholder = GTK_WIDGET (gtk_builder_get_object(builder, "mods_placeholder")); 113 | gtk_widget_set_visible(placeholder, TRUE); 114 | gtk_list_box_set_placeholder(GTK_LIST_BOX (gtk_builder_get_object(builder, "mods_list")), 115 | placeholder); 116 | prefs = GTK_WINDOW (gtk_builder_get_object(builder, "prefs_window")); 117 | gtk_window_set_application(prefs, app); 118 | gtk_window_set_transient_for(prefs, gtk_application_get_window_by_id(app, 1)); 119 | 120 | gtk_builder_connect_signals(builder, NULL); 121 | bind_settings(); 122 | gtk_window_present(window); 123 | } 124 | 125 | static void init_settings() 126 | { 127 | gset = g_settings_new("io.github.her001.Asma"); 128 | gset_a3 = g_settings_new("io.github.her001.Asma.arma3"); 129 | g_signal_connect(gset_a3, "changed::game-path", G_CALLBACK (update_and_check_dir), NULL); 130 | update_root_dir(gset_a3, "game-path", NULL); 131 | } 132 | 133 | static void init_builder() 134 | { 135 | builder = gtk_builder_new(); 136 | gtk_builder_add_from_resource(builder, "/io/github/her001/Asma/asma.glade", NULL); 137 | gtk_builder_add_from_resource(builder, "/io/github/her001/Asma/preferences.glade", NULL); 138 | gtk_builder_add_from_resource(builder, "/io/github/her001/Asma/appmenu.ui", NULL); 139 | } 140 | 141 | int main(int argc, char* argv[]) 142 | { 143 | g_autoptr (GtkApplication) app; 144 | 145 | init_settings(); 146 | 147 | app = gtk_application_new("io.github.her001.Asma", 148 | G_APPLICATION_FLAGS_NONE); 149 | g_signal_connect(app, "activate", G_CALLBACK (activate), NULL); 150 | 151 | return g_application_run(G_APPLICATION (app), argc, argv); 152 | } 153 | 154 | -------------------------------------------------------------------------------- /src/asma.glade: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | False 7 | 18 8 | 18 9 | vertical 10 | 11 | 12 | True 13 | False 14 | end 15 | 128 16 | applications-engineering-symbolic 17 | 6 18 | 19 | 20 | True 21 | True 22 | 0 23 | 24 | 25 | 26 | 27 | True 28 | False 29 | start 30 | 18 31 | No game modifications found. 32 | center 33 | 34 | 35 | True 36 | True 37 | 1 38 | 39 | 40 | 41 | 42 | False 43 | 44 | 45 | True 46 | False 47 | vertical 48 | 49 | 50 | True 51 | False 52 | 12 53 | Enter a preset name: 54 | 55 | 56 | False 57 | True 58 | 0 59 | 60 | 61 | 62 | 63 | True 64 | True 65 | 6 66 | True 67 | True 68 | 69 | 70 | False 71 | True 72 | 1 73 | 74 | 75 | 76 | 77 | True 78 | False 79 | 6 80 | True 81 | 82 | 83 | Cancel 84 | True 85 | True 86 | True 87 | 88 | 89 | False 90 | True 91 | 0 92 | 93 | 94 | 95 | 96 | Add Preset 97 | True 98 | True 99 | True 100 | 101 | 102 | False 103 | True 104 | 1 105 | 106 | 107 | 108 | 109 | False 110 | True 111 | 2 112 | 113 | 114 | 115 | 116 | submenu1 117 | 1 118 | 119 | 120 | 121 | 122 | True 123 | False 124 | vertical 125 | 126 | 127 | True 128 | True 129 | never 130 | in 131 | 200 132 | True 133 | 134 | 135 | True 136 | False 137 | 138 | 139 | True 140 | False 141 | 142 | 143 | True 144 | True 145 | 146 | 147 | True 148 | False 149 | center 150 | 6 151 | 6 152 | Vanilla 153 | 154 | 155 | 156 | 157 | 158 | 159 | True 160 | True 161 | 162 | 163 | True 164 | False 165 | start 166 | 6 167 | 6 168 | All Mods 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | True 180 | True 181 | 0 182 | 183 | 184 | 185 | 186 | Add Preset 187 | True 188 | True 189 | True 190 | 6 191 | 192 | 193 | False 194 | True 195 | 1 196 | 197 | 198 | 199 | 200 | main 201 | 2 202 | 203 | 204 | 205 | 206 | False 207 | 600 208 | 350 209 | asma 210 | True 211 | 212 | 213 | 214 | True 215 | False 216 | vertical 217 | 218 | 219 | True 220 | True 221 | never 222 | in 223 | 224 | 225 | 226 | True 227 | False 228 | 18 229 | 18 230 | 18 231 | 18 232 | 233 | 234 | True 235 | False 236 | none 237 | 238 | 239 | 240 | 241 | 242 | 243 | True 244 | True 245 | end 246 | 0 247 | 248 | 249 | 250 | 251 | 252 | 253 | True 254 | False 255 | Asma 256 | Simple Arma 3 Launcher 257 | 12 258 | True 259 | 260 | 261 | True 262 | True 263 | True 264 | 265 | 266 | 267 | 268 | True 269 | False 270 | gtk-media-play 271 | 272 | 273 | 274 | 275 | 276 | 277 | True 278 | False 279 | expand 280 | 281 | 282 | True 283 | True 284 | True 285 | 286 | 287 | 288 | True 289 | False 290 | gtk-refresh 291 | 292 | 293 | 294 | 295 | True 296 | True 297 | 1 298 | 299 | 300 | 301 | 302 | True 303 | True 304 | True 305 | 306 | 307 | 308 | True 309 | False 310 | gtk-directory 311 | 312 | 313 | 314 | 315 | True 316 | True 317 | 2 318 | 319 | 320 | 321 | 322 | 2 323 | 324 | 325 | 326 | 327 | True 328 | True 329 | preset_menu 330 | 331 | 332 | True 333 | False 334 | bookmarks 335 | 336 | 337 | 338 | 339 | end 340 | 1 341 | 342 | 343 | 344 | 345 | 346 | 347 | False 348 | About 349 | True 350 | center-on-parent 351 | True 352 | dialog 353 | True 354 | app_window 355 | Asma 356 | 0.0.1 357 | © 2016, 2017 Andrew "HER0" Conrad 358 | © 2016 Pau Busquets Aguiló 359 | Simple Arma 3 Launcher 360 | https://github.com/her001/asma 361 | GitHub Page 362 | Andrew "HER0" Conrad 363 | Pau Busquets Aguiló 364 | et al. 365 | asma 366 | gpl-3-0 367 | 368 | 369 | False 370 | vertical 371 | 2 372 | 373 | 374 | False 375 | end 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | False 385 | False 386 | 0 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | -------------------------------------------------------------------------------- /src/preferences.glade: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 7 | 1 8 | 10 9 | 10 | 11 | False 12 | False 13 | True 14 | dialog 15 | True 16 | 17 | 18 | 19 | True 20 | False 21 | 18 22 | 18 23 | 18 24 | 18 25 | slide-left-right 26 | 27 | 28 | True 29 | False 30 | center 31 | 18 32 | 18 33 | 6 34 | 12 35 | 36 | 37 | True 38 | False 39 | end 40 | Arma 3 Directory Path 41 | right 42 | 43 | 44 | 0 45 | 0 46 | 47 | 48 | 49 | 50 | True 51 | False 52 | 53 | 54 | True 55 | True 56 | False 57 | True 58 | 48 59 | True 60 | Path to Arma 3 folder 61 | 62 | 63 | False 64 | True 65 | 0 66 | 67 | 68 | 69 | 70 | True 71 | True 72 | True 73 | True 74 | True 75 | Open Directory 76 | 77 | 78 | 79 | True 80 | False 81 | gtk-open 82 | 83 | 84 | 85 | 86 | False 87 | True 88 | 1 89 | 90 | 91 | 92 | 93 | 1 94 | 0 95 | 96 | 97 | 98 | 99 | True 100 | False 101 | end 102 | 12 103 | Arma 3 Launch Parameters 104 | right 105 | 106 | 107 | 108 | 109 | 110 | 0 111 | 2 112 | 113 | 114 | 115 | 116 | Force windowed mode 117 | True 118 | True 119 | False 120 | True 121 | 122 | 123 | 1 124 | 5 125 | 126 | 127 | 128 | 129 | Show splash screen 130 | True 131 | True 132 | False 133 | True 134 | True 135 | 136 | 137 | 1 138 | 6 139 | 140 | 141 | 142 | 143 | Show world in the main menu background 144 | True 145 | True 146 | False 147 | True 148 | True 149 | 150 | 151 | 1 152 | 7 153 | 154 | 155 | 156 | 157 | True 158 | True 159 | 12 160 | 161 | 162 | True 163 | False 164 | 12 165 | vertical 166 | 6 167 | 168 | 169 | Display script errors 170 | True 171 | True 172 | False 173 | True 174 | 175 | 176 | False 177 | True 178 | 0 179 | 180 | 181 | 182 | 183 | Enable file patching 184 | True 185 | True 186 | False 187 | True 188 | 189 | 190 | False 191 | True 192 | 1 193 | 194 | 195 | 196 | 197 | 198 | 199 | True 200 | False 201 | start 202 | Advanced 203 | 204 | 205 | 206 | 207 | 1 208 | 8 209 | 210 | 211 | 212 | 213 | False 214 | end 215 | Launch via Steam 216 | right 217 | 218 | 219 | 0 220 | 1 221 | 222 | 223 | 224 | 225 | True 226 | start 227 | True 228 | 229 | 230 | 1 231 | 1 232 | 233 | 234 | 235 | 236 | False 237 | 238 | 239 | True 240 | False 241 | False 242 | 12 243 | Display index 244 | 245 | 246 | False 247 | True 248 | 0 249 | 250 | 251 | 252 | 253 | True 254 | False 255 | True 256 | start 257 | 1 258 | 5 259 | 0 260 | True 261 | display 262 | False 263 | number 264 | monitor_adjustment 265 | 1 266 | True 267 | True 268 | 269 | 270 | False 271 | True 272 | 1 273 | 274 | 275 | 276 | 277 | 1 278 | 4 279 | 280 | 281 | 282 | 283 | Select display to launch on 284 | True 285 | False 286 | True 287 | 288 | 289 | 1 290 | 3 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | prefs_a3 317 | Arma 3 318 | 319 | 320 | 321 | 322 | True 323 | False 324 | center 325 | 6 326 | 12 327 | 328 | 329 | True 330 | False 331 | end 332 | Game to Launch 333 | right 334 | 335 | 336 | 0 337 | 0 338 | 339 | 340 | 341 | 342 | Close Asma after launching 343 | True 344 | True 345 | False 346 | 12 347 | True 348 | 349 | 350 | 1 351 | 1 352 | 353 | 354 | 355 | 356 | True 357 | False 358 | 359 | Arma 3 360 | Arma: Cold War Assault 361 | 362 | 363 | 364 | 1 365 | 0 366 | 367 | 368 | 369 | 370 | True 371 | True 372 | 12 373 | 374 | 375 | Enable Mesa OpenGL overrides 376 | True 377 | True 378 | False 379 | 12 380 | True 381 | 382 | 383 | 384 | 385 | True 386 | False 387 | start 388 | Advanced 389 | 390 | 391 | 392 | 393 | 1 394 | 3 395 | 396 | 397 | 398 | 399 | True 400 | False 401 | end 402 | 12 403 | Dark Theme 404 | right 405 | 406 | 407 | 0 408 | 2 409 | 410 | 411 | 412 | 413 | True 414 | True 415 | start 416 | 12 417 | True 418 | 419 | 420 | 1 421 | 2 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | prefs_general 433 | Preferences 434 | 1 435 | 436 | 437 | 438 | 439 | True 440 | False 441 | center 442 | 6 443 | 12 444 | 445 | 446 | True 447 | False 448 | end 449 | Directory Path 450 | right 451 | 452 | 453 | 0 454 | 0 455 | 456 | 457 | 458 | 459 | True 460 | False 461 | 462 | 463 | True 464 | True 465 | True 466 | True 467 | False 468 | 48 469 | True 470 | Path to Arma: Cold War Assault folder 471 | 472 | 473 | False 474 | True 475 | 0 476 | 477 | 478 | 479 | 480 | True 481 | True 482 | True 483 | True 484 | True 485 | Open Directory 486 | 487 | 488 | True 489 | False 490 | gtk-open 491 | 492 | 493 | 494 | 495 | False 496 | True 497 | 1 498 | 499 | 500 | 501 | 502 | 1 503 | 0 504 | 505 | 506 | 507 | 508 | True 509 | False 510 | end 511 | 12 512 | Launch Parameters 513 | right 514 | 515 | 516 | 517 | 518 | 519 | 0 520 | 2 521 | 522 | 523 | 524 | 525 | Force windowed mode 526 | True 527 | True 528 | False 529 | True 530 | 531 | 532 | 1 533 | 5 534 | 535 | 536 | 537 | 538 | Disable splash screen 539 | True 540 | True 541 | False 542 | True 543 | 544 | 545 | 1 546 | 6 547 | 548 | 549 | 550 | 551 | True 552 | False 553 | end 554 | Launch via Steam 555 | right 556 | 557 | 558 | 0 559 | 1 560 | 561 | 562 | 563 | 564 | True 565 | True 566 | start 567 | True 568 | 569 | 570 | 1 571 | 1 572 | 573 | 574 | 575 | 576 | True 577 | False 578 | 6 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 1 594 | 4 595 | 596 | 597 | 598 | 599 | Override game resolution 600 | True 601 | True 602 | False 603 | True 604 | 605 | 606 | 1 607 | 3 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | 627 | prefs_of 628 | Arma: CWA 629 | 2 630 | 631 | 632 | 633 | 634 | 635 | 636 | True 637 | False 638 | Preferences 639 | True 640 | 641 | 642 | 643 | 644 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | 676 | --------------------------------------------------------------------------------