home · contact · privacy
Add GPL notices to all source files.
authorChristian Heller <c.heller@plomlompom.de>
Sun, 31 Jan 2016 22:38:27 +0000 (23:38 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Sun, 31 Jan 2016 22:38:27 +0000 (23:38 +0100)
18 files changed:
client/commands.py
client/config/commands.py
client/config/io.py
client/config/windows.py
client/config/world_data.py
client/io.py
client/query_mapcell.py
client/window_management.py
client/windows.py
roguelike-client
server/actions.py
server/ai.py
server/commands.py
server/config/actions.py
server/config/commands.py
server/config/io.py
server/config/world_data.py
server/io.py

index 61cffacc57c565a9a6b7779e93061c1d43a48cef..c1d61419dd8edb997394ba1d837abe2ebea283b4 100644 (file)
@@ -1,3 +1,8 @@
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 from client.config.world_data import world_data
 from client.io import send
 from client.query_mapcell import query_mapcell
index 7de9574f3983532dcab6096e7a9d7f1d07234c3d..b7919475fc811e7a86d73b7fcbaf10a0bc1213b0 100644 (file)
@@ -1,7 +1,13 @@
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 from client.commands import command_sender, command_look_scroller, \
     command_quit, command_looker, command_inventory_selector, \
     command_toggle_look_mode
 
+
 commands = {
     "A": (command_sender("ai"),),
     "D": (command_sender("drop", "inventory_selection"),),
index f0ec29c4806c582dd02b97b923704a4a502ae588..45021f307e9524b8f6f0866c0e6fad020bdc0d39 100644 (file)
@@ -1,3 +1,8 @@
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 io = {
     "path_out": "server_run/in",
     "path_in": "server_run/out",
index 86fd4dcc3c3e88373d1c1bc8721a81328318b4e3..676d94c9b864397c95af40d4a11273a1fb4d4fdb 100644 (file)
@@ -1,5 +1,11 @@
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 from client.windows import win_info, win_log, win_inventory, win_look, win_map
 
+
 windows_config = [
     {"config": [1, 33], "func": win_info, "title": "Info"},
     {"config": [-7, 33], "func": win_log, "title": "Log"},
index 352d1a9f9b9de2e6123da3665b3be1994c2c097c..4b60b102eec3109f74fce86524bb1473603983ab 100644 (file)
@@ -1,3 +1,8 @@
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 world_data = {
     "avatar_position": [-1, -1],
     "fov_map": "",
index 7927f507a6ebb87e986d2c99456af8b24dbe7a31..df6f2f81c8bb6f925dc113b5a3a3722c91f91254 100644 (file)
@@ -1,5 +1,11 @@
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 from client.config.io import io
 
+
 def send(string):
     io["file_out"].write(string + "\n")
     io["file_out"].flush()
index fba374d232f833cca18523e9035ecb6619f97aad..838fb7edcb131b33f2529d37d590b319ff7fbf90 100644 (file)
@@ -1,6 +1,12 @@
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 from client.config.world_data import world_data
 from client.io import send
 
+
 def query_mapcell():
     string = "THINGS_HERE " + str(world_data["map_center"][0]) + " " \
              + str(world_data["map_center"][1])
index 141cc656b6e92fa81427b704f9c87e006eabd570..9a50b296d22c7165ee9d757008801462e9d64090 100644 (file)
@@ -1,3 +1,8 @@
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 import curses
 import types
 
index 4177bed7cfd4a47722f4b3ff85b2226568daa993..9eddc1cb33beb722e269c30edcca0b5cdcd6b81f 100644 (file)
@@ -1,3 +1,8 @@
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 import math
 import curses
 
index 5d140640ac1a739ccda084f41f01aa6ae372f174..55fb9789d2a33585bc678b6e53eabf047566c7a5 100755 (executable)
@@ -1,11 +1,15 @@
 #!/usr/bin/python3
 
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 import curses
 import os
 import signal
 import time
 
-
 from client.config.world_data import world_data
 from client.config.io import io
 from client.config.commands import commands
index 60313876fecab80b9c28611fa23065b578dce201..1c835814ab51b6714413945c3648996e86f69eb1 100644 (file)
@@ -1,3 +1,8 @@
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 from server.config.world_data import world_db
 from server.io import log
 
index 9d5fc8d2282b0a34d06fab26d2c224391935ea40..ed65fbdfd13fa80a4b53ff9c49cf348a85de2587 100644 (file)
@@ -1,3 +1,8 @@
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 from server.config.world_data import world_db
 
 
index fb20415bf681ea4fed90dbec3aa4021023b66546..4716154f4f338e77fda6709e9cbb312bec95f4ca 100644 (file)
@@ -1,3 +1,8 @@
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 from server.config.world_data import world_db
 from server.config.io import io_db
 from server.io import log, strong_write 
index c07a9d83eff6067817062231189b3f70ca100682..0971c128dc2f9f2b17f89439c193948a52fa4d27 100644 (file)
@@ -1,3 +1,8 @@
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 from server.actions import actor_wait, actor_move, actor_pick_up, actor_drop, \
     actor_use
 
index 0184051c5218f50426499e2df61f35bb728c66b4..197f7ee82dcfc63ed5c19c98743b1e5eaeb98142 100644 (file)
@@ -1,3 +1,8 @@
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 from server.commands import command_plugin, command_quit, command_ping, \
     command_thingshere, command_makeworld, command_seedrandomness, setter, \
     command_maplength, command_worldactive, setter_map, command_taid, \
index 76f403c8282ccf2e28474dff1a5b194a470dadec..e134b2f6af6a7d9c1be8430a16a74acd62430a87 100644 (file)
@@ -1,3 +1,8 @@
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 """File IO database."""
 io_db = {
     "path_save": "save",
index 45acf4f5a17e0b61b1dc47bbcbe91e8ed39391de..e9c6bac21551e7b78b36c295c48e9a76d480c3db 100644 (file)
@@ -1,3 +1,8 @@
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 """World state database. With sane default values. (Randomness is in rand.)"""
 world_db = {
     "TURN": 0,
index 46facb9ea47c475f1b17d27ffed0e60f896e87fd..65d1c351484b07fbbfeec06add24da55b2bd498b 100644 (file)
@@ -1,7 +1,11 @@
+# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+# or any later version. For details on its copyright, license, and warranties,
+# see the file NOTICE in the root directory of the PlomRogue source package.
+
+
 import os
 import time
 
-
 from server.config.world_data import world_db
 from server.config.io import io_db