forked from FredrIQ/fiqhack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
copyright
2134 lines (1978 loc) · 91.6 KB
/
copyright
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Last-Modified: Last modified by Fredrik Ljungdahl, 2017-12-26
Comment:
.
This file is Copyright (C) Alex Smith 2013-2015, except as explained below
.
Parts of this file that quote other license agreements verbatim are
under the same licenses as those licenses. Those licenses which even
have an explicit license agreement (which, in the case of the
licenses in this file, is embedded into the licenses themselves)
typically allow redistribution of the license, but only without
modifications (here interpreted as allowing embedding into a larger
document, including reversible changes to the sequence of bytes that
make up the license, that do not lose or hide any meaning). When a
license does not have an explicit license agreement, I'm assuming
that the typical legal requirement to preserve copyright and license
notices also carries implicit permission to copy those notices (so as
to be able to preserve them). The copyright statement above does not
apply to verbatim quotes of other licenses, and is not intended to
challenge their copyright status.
.
As for parts of this file that are not quoting other license
agreements, I hereby license anyone to copy and distribute them,
either verbatim or with modifications, so long as the authorship of
modified copies is not misrepresented.
.
THERE IS NO WARRANTY FOR THIS COPYRIGHT INFORMATION FILE. IT HAS NOT
BEEN THOROUGHLY CHECKED FOR ACCURACY, AND MAY WELL CONTAIN MISTAKES.
USE IT AT YOUR OWN RISK.
.
Upstream-Name: nethack4
Upstream-Contact: [email protected]
Files: binary-copyright.pod copyright
Copyright: Copyright (C) Alex Smith 2013-2015, except as explained below
License: verbatim and nh4-metacopyright
Parts of this file that quote other license agreements verbatim are
under the same licenses as those licenses. Those licenses which even
have an explicit license agreement (which, in the case of the
licenses in this file, is embedded into the licenses themselves)
typically allow redistribution of the license, but only without
modifications (here interpreted as allowing embedding into a larger
document, including reversible changes to the sequence of bytes that
make up the license, that do not lose or hide any meaning). When a
license does not have an explicit license agreement, I'm assuming
that the typical legal requirement to preserve copyright and license
notices also carries implicit permission to copy those notices (so as
to be able to preserve them). The copyright statement above does not
apply to verbatim quotes of other licenses, and is not intended to
challenge their copyright status.
.
As for parts of this file that are not quoting other license
agreements, I hereby license anyone to copy and distribute them,
either verbatim or with modifications, so long as the authorship of
modified copies is not misrepresented.
.
THERE IS NO WARRANTY FOR THIS COPYRIGHT INFORMATION FILE. IT HAS NOT
BEEN THOROUGHLY CHECKED FOR ACCURACY, AND MAY WELL CONTAIN MISTAKES.
USE IT AT YOUR OWN RISK.
Comment:
In order to track the copyright status of every file in the
distribution, the copyright-tracking files also need to track
themselves. The license is open-source as far as is possible, but it
is typically a legal requirement to preserve existing license notices
unchanged. This license is not used for any code; it is entirely
exclusive to files that explain the copyright status of other files.
Files: libnethack_client/*
License: NGPL or GPL-2+
Copyright: Copyright (c) Daniel Thaler, 2012.
Files: libnethack/dat/*.des
License: NGPL
Copyright:
Copyright (c) 1989-95 by Jean-Christophe Collet
Copyright (c) 1990-95 by M. Stephenson
Copyright (c) 1991-93 by P. Winner
Copyright (c) 1992-93 by Izchak Miller, David Cohrs
Files: libnethack/dat/Rogue.des
License: NGPL
Copyright: Copyright (c) 1992 by Dean Luick
Files: libnethack/dat/data.base
License: NGPL
Copyright: Copyright (c) 2010 by Alex Smith
Files: libnethack/dat/dungeon.def
License: NGPL
Copyright: Copyright (c) 1990-95 by M. Stephenson
Files: libnethack/dat/quest.txt
License: NGPL
Copyright: Copyright (c) 1991 by M. Stephenson
Files: libnethack/dat/oracles.txt libnethack/dat/rumors.fal libnethack/dat/rumors.tru
License: NGPL
Copyright:
These files had no explicit copyright notice in the NetHack distribution; the
format of the rumours.* files made it impossible to include one (whereas the
oracles.txt file could have included one, but didn't). The likely copyright
is the general copyright of NetHack:
.
Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985
Files: libnethack/dat/history
License: NGPL
Copyright:
This file is a text file containing a high-level changelog for NetHack. As
such, it did not have an explicit copyright notice. The likely copyright is
the general copyright of NetHack:
.
Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985
Files: libnethack/include/*.h
License: NGPL
Copyright: Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985
Files: libnethack/include/align.h
License: NGPL
Copyright: Copyright (c) Mike Stephenson, Izchak Miller 1991
Files: libnethack/include/attrib.h
License: NGPL
Copyright: Copyright 1998, Mike Stephenson
Files: libnethack/include/color.h
License: NGPL
Copyright: Copyright (c) Steve Linhart, Eric Raymond, 1989
Files: libnethack/include/dgn_file.h
License: NGPL
Copyright: Copyright (c) 1989 by Mike Stephenson
Files: libnethack/include/display.h
License: NGPL
Copyright: Copyright (c) Dean Luick, with acknowledgements to Kevin Darcy
Files: libnethack/include/dlb.h libnethack/include/iomodes.h
License: NGPL
Copyright: Copyright (c) Kenneth Lorber, Bethesda, Maryland, 1993
Files: libnethack/include/drawing.h
License: NGPL
Copyright:
Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985
Copyright (c) 2013 Alex Smith
Files: libnethack/include/extern.h
License: NGPL
Copyright: Copyright (c) Steve Creps, 1988
Files: libnethack/include/magic.h
License: NGPL
Copyright: Copyright (c) Daniel Thaler, 2011
Files: libnethack/include/lz4.h
License: BSD-2
Copyright: Copyright (C) 2011-2017, Yann Collet.
Files: libnethack/include/memfile.h
License: NGPL
Copyright: Copyright (c) 2015 Alex Smith
Files: libnethack/include/mextra.h
License: NGPL
Copyright:
Copyright (c) Izchak Miller, 1989
Copyright (c) Fredrik Ljungdahl, 2015
Files: libnethack/include/monattk.h
License: NGPL
Copyright: Copyright 1988, Mike Stephenson
Files: libnethack/include/mondata.h
License: NGPL
Copyright: Copyright (c) 1989, Mike Threepoint
Files: libnethack/include/monflag.h
License: NGPL
Copyright: Copyright (c) 1989, Mike Threepoint
Files: libnethack/include/ntconf.h
License: NGPL
Copyright: Copyright (c) NetHack PC Development Team 1993, 1994
Files: libnethack/include/prop.h
License: NGPL
Copyright: Copyright (c) 1989 Mike Threepoint
Files: libnethack/include/qtext.h
License: NGPL
Copyright: Copyright (c) Mike Stephenson 1991
Files: libnethack/include/quest.h
License: NGPL
Copyright: Copyright (c) Mike Stephenson 1991
Files: libnethack/include/rect.h
License: NGPL
Copyright: Copyright (c) 1990 by Jean-Christophe Collet
Files: libnethack/include/region.h
License: NGPL
Copyright: Copyright (c) 1996 by Jean-Christophe Collet
Files: libnethack/include/skills.h
License: NGPL
Copyright: Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985-1999
Files: libnethack/include/spell.h
License: NGPL
Copyright: Copyright 1986, Mike Stephenson
Files: libnethack/include/sp_lev.h
License: NGPL
Copyright: Copyright (c) 1989 by Jean-Christophe Collet
Files: libnethack/include/timeout.h
License: NGPL
Copyright: Copyright 1994, Dean Luick
Files: libnethack/include/vision.h
License: NGPL
Copyright: Copyright (c) Dean Luick, with acknowledgements to Dave Cohrs, 1990
Files: libnethack/include/winprocs.h
License: NGPL
Copyright: Copyright (c) David Cohrs, 1992
Files: libnethack/include/youprop.h
License: NGPL
Copyright: Copyright (c) 1989 Mike Threepoint
Files: libnethack/src/*.c
License: NGPL
Copyright: Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985
Files: libnethack/src/attrib.c
License: NGPL
Copyright: Copyright 1988, 1989, 1990, 1992, M. Stephenson
Files: libnethack/src/bones.c
License: NGPL
Copyright: Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985,1993
Files: libnethack/src/dbridge.c
License: NGPL
Copyright: Copyright (c) 1989 by Jean-Christophe Collet
Files: libnethack/src/display.c
License: NGPL
Copyright: Copyright (c) Dean Luick, with acknowledgements to Kevin Darcy and Dave Cohrs 1990
Files: libnethack/src/dlb.c
License: NGPL
Copyright: Copyright (c) Kenneth Lorber, Bethesda, Maryland, 1993
Files: libnethack/src/dokick.c
License: NGPL
Copyright: Copyright (c) Izchak Miller, Mike Stephenson, Steve Linhart, 1989
Files: libnethack/src/drawing.c
License: NGPL
Copyright: Copyright (c) NetHack Development Team 1992
Files: libnethack/src/dump.c
License: NGPL
Copyright: Copyright (c) Daniel Thaler, 2011
Files: libnethack/src/explode.c
License: NGPL
Copyright: Copyright (C) 1990 by Ken Arromdee
Files: libnethack/src/extralev.c
License: NGPL
Copyright: Copyright 1988, 1989 by Ken Arromdee
Files: libnethack/src/fountain.c
License: NGPL
Copyright: Copyright Scott R. Turner, srt@ucla, 10/27/86
Files: libnethack/src/history.c
License: NGPL
Copyright: Copyright (c) Daniel Thaler, 2011
Files: libnethack/src/level.c
License: NGPL
Copyright: Copyright (c) Sean Hunt, 2013
Files: libnethack/src/light.c
License: NGPL
Copyright: Copyright (c) Dean Luick, 1994
Files: libnethack/src/localtime.c
License: NGPL
Copyright:
Copyright (c) Robert Patrick Rankin, 1991
Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985
Files: libnethack/src/log*.c
License: NGPL
Copyright: Copyright (c) Daniel Thaler, 2011
Files: libnethack/src/lz4.c
License: BSD-2
Copyright: Copyright (C) 2011-2017, Yann Collet.
Files: libnethack/src/memfile.c
License: NGPL
Copyright: Copyright (c) Daniel Thaler, 2011
Files: libnethack/src/messages.c
License: NGPL
Copyright: Copyright (c) 2014 Alex Smith
Files: libnethack/src/mextra.c
License: NGPL
Copyright: Copyright (c) Fredrik Ljungdahl, 2015
Files: libnethack/src/mhitq.c
License: NGPL
Copyright:
Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
Copyright (c) 2015 Alex Smith.
Files: libnethack/src/mkmap.c
License: NGPL
Copyright: Copyright (c) J. C. Collet, M. Stephenson and D. Cohrs, 1992
Files: libnethack/src/mplayer.c
License: NGPL
Copyright: Copyright (c) Izchak Miller, 1992
Files: libnethack/src/muse.c
License: NGPL
Copyright: Copyright (C) 1990 by Ken Arromdee
Files: libnethack/src/music.c
License: NGPL
Copyright: Copyright (c) 1989 by Jean-Christophe Collet
Files: libnethack/src/newrng.c
License: NGPL
Copyright: Copyright (c) 2014 Alex Smith
Comment:
Also contains some public domain source from LibTomCrypt, via AdeonRNG.
Files: libnethack/src/objects.c
License: NGPL
Copyright: Copyright (c) Mike Threepoint, 1989
Files: libnethack/src/polyself.c
License: NGPL
Copyright: Copyright (c) 1987, 1988, 1989 by Ken Arromdee
Files: libnethack/src/pray.c
License: NGPL
Copyright: Copyright (c) Benson I. Margulies, Mike Stephenson, Steve Linhart, 1989
Files: libnethack/src/priest.c
License: NGPL
Copyright: Copyright (c) Izchak Miller, Steve Linhart, 1989
Files: libnethack/src/prop.c
License: NGPL
Copyright:
Copyright (c) 1989 Mike Threepoint
Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
Copyright (c) 2014 Alex Smith
Files: libnethack/src/quest*.c
License: NGPL
Copyright: Copyright 1991, M. Stephenson
Files: libnethack/src/rect.c
License: NGPL
Copyright: Copyright (c) 1990 by Jean-Christophe Collet
Files: libnethack/src/region.c
License: NGPL
Copyright: Copyright (c) 1996 by Jean-Christophe Collet
Files: libnethack/src/role.c
License: NGPL
Copyright: Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985-1999
Files: libnethack/src/sounds.c
License: NGPL
Copyright: Copyright (c) 1989 Janet Walz, Mike Threepoint
Files: libnethack/src/spell.c
License: NGPL
Copyright: Copyright (c) M. Stephenson 1988
Files: libnethack/src/sp_lev.c
License: NGPL
Copyright: Copyright (c) 1989 by Jean-Christophe Collet
Files: libnethack/src/steed.c
License: NGPL
Copyright: Copyright (c) Kevin Hugo, 1998-1999
Files: libnethack/src/symclass.c
License: NGPL
Copyright: Copyright (c) NetHack Devlopment Team 1992
Files: libnethack/src/vision.c
License: NGPL
Copyright: Copyright (c) Dean Luick, with acknowledgements to Dave Cohrs, 1990
Files: libnethack/src/windows.c
License: NGPL
Copyright: Copyright (c) D. Cohrs, 1993
Files: libnethack/util/dgn_* doc/dgn_comp.pod
License: NGPL
Copyright:
Copyright (c) 1989 by Jean-Christophe Collet
Copyright (C) 1990 by M. Stephenson
Comment:
The dgn_comp.pod copyright is a guess. (The file was translated from
dgn_comp.6, which probably had the same copyright as dgn_comp itself.)
Files: libnethack/util/dlb_main.c doc/dlb.pod
License: NGPL
Copyright: Copyright (c) Kenneth Lorber, Bethesda, Maryland, 1993
Comment:
The dlb.pod copyright is a guess. (The file was translated from dlb.6, which
probably had the same copyright as dlb itself.)
Files: libnethack/util/lev_* doc/lev_comp.pod
License: NGPL
Copyright: Copyright (c) 1989 by Jean-Christophe Collet
Comment:
The lev_comp.pod copyright is a guess. (The file was translated from
lev_comp.6, which probably had the same copyright as lev_comp itself.)
Files: libnethack/util/makedefs.c
License: NGPL
Copyright:
Copyright (c) Dean Luick, 1990
Copyright (c) M. Stephenson, 1990, 1991
Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985
Files: libnethack/util/checkglobals.sh
License: NGPL
Copyright: Copyright (c) 2013 Alex Smith
Files: testbench/*
License: NGPL
Copyright: Copyright (c) 2015 Alex Smith
Files: libuncursed/*
License: NGPL or GPL-2+
Copyright: Copyright (c) 2013-2014 Alex Smith
Files: libnethack_common/include/nethack*.h
License: NGPL
Copyright:
These files have no explicit copyright notice. However, the originals come
from NitroHack, and thus likely have the following copyright based on their
creation dates:
Copyright (c) Daniel Thaler 2011-2012
Files: libnethack_common/*/common_options.*
License: NGPL
Copyright: Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985
Files: libnethack_common/include/compilers.h
License: NGPL
Copyright:
Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985
Copyright (c) Alex Smith 2014
Files: libnethack_common/src/xmalloc.c
License: NGPL
Copyright: Copyright (c) Daniel Thaler, 2011
Files: libnethack_common/src/trietable.c libnethack_common/include/trietable.h
License: NGPL
Copyright: Copyright (c) Alex Smith, 2015
Files: libnethack_common/src/hacklib.c
License: NGPL
Copyright:
Copyright (c) Robert Patrick Rankin, 1991
Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985
Files: libnethack_common/include/hacklib.h
License: NGPL
Copyright:
Copyright (c) Alex Smith, 2013
Copyright (c) Steve Creps, 1988
Files: libnethack_common/include/xmalloc.h
License: NGPL
Copyright:
Copyright (c) Daniel Thaler, 2011
Copyright (c) Alex Smith, 2013
Files: libnethack_common/*/menulist.*
License: NGPL
Copyright: Copyright (c) Alex Smith, 2013
Files: libnethack_common/*/utf8conv.*
License: NGPL
Copyright: Copyright (C) 2014 Alex Smith
Files: libnethack_common/*/netconnect.*
License: NGPL
Copyright:
Copyright (c) Daniel Thaler, 2012
Copyright (c) 2014 Alex Smith
Files: nethack/*
License: NGPL
Copyright: Copyright (c) Daniel Thaler, 2011
Files: nethack/src/getline.c
License: NGPL
Copyright: Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985
Files: nethack/src/main.c
License: NGPL
Copyright: Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985
Files: nethack/*/brandings.*
License: NGPL
Copyright: Copyright (c) 2013 Alex Smith
Files: nethack/src/extrawin.c nethack/src/motd.c
License: NGPL
Copyright: Copyright (c) 2014 Alex Smith
Files: libnethack_common/dat/motd.txt
License: NGPL
Copyright: Copyright (C) 2014 Alex Smith
Files: nethack_server/*
License: NGPL or GPL-2+
Copyright: Copyright (c) Daniel Thaler, 2011
Files: tilesets/missing-slashem-32-tiles.txt
License: NGPL
Copyright: Copyright (C) 2013 Alex Smith
Files: tilesets/dat/tiles/s-*.txt tilesets/dat/palettes/slashem.txt
License: NGPL
Copyright: These tiles were copied from an NGPL Slash'EM release that was
Copyright (C) J. Ali Harlow 2000-2006, which gives the following
explanation of the provenance and copyright status of the tiles:
.
Window ports can optionally make use of the tiles (pictures for NetHack
symbols) found in this directory. They are distributed in a text format
with routines to help in converting them to a system's preferred format
and using them there. The original tiles were provided by Warwick Allison.
.
The 32x32 tileset stored in mon32mi.txt, obj32mi.txt and oth32mi.txt and the
Psuedo-3D tileset stored in mon3dmi.txt, obj3dmi.txt and oth3dmi.txt were
created by a number of different people under the direction of Mitsuhiro
Itakura ([email protected]) who also holds the copyright on these
tiles. The artists were:
.
Mitsuhiro Itakura
Haruko Numata
Edger
ZMYDaino
Wan'ichi
Tatsuya
.
The 32x32 tileset stored in mon32alg.txt, obj32alg.txt and oth32alg.txt
and the additional tiles stored in xxx32al2.txt (not used by all ports)
were imported from AllegroHack, written by Kelly Youngblood ([email protected]).
The artists were:
.
Kelly Youngblood
Paul Pliska
John Harris
.
The 32x32 tileset stored in mon32aw.txt was contributed by Andrew Walker.
.
Slash'EM specific high resolution tiles are stored in mon32se.txt, obj32se.txt
and oth32se.txt. These override those found in other tilesets.
Tiles which are not present in any other set are created from the 16x16 tiles.
Files: tilesets/dat/tiles/n-343.txt
License: NGPL
Copyright: These tiles were taken from the NetHack 3.4.3 source tarball, and
have no copyright notice for the individual tiles that were taken (although
the files they were taken from were originally provided by Warwick Allison,
the specific tiles taken were added later, and it is unclear who added them).
.
The tarball as a whole has this copyright:
.
Copyright 1985-2003 Stichting Mathematisch Centrum and M. Stephenson
Files: tilesets/dat/tiles/n-4-*.txt
License: NGPL
Copyright:
Copyright (C) 2013 Alex Smith, in addition to the copyright on the tiles from
Slash'EM on which these files are based (see tilesets/dat/tiles/s-*.txt).
Files: tilesets/dat/tiles/dawnlike-*.txt
License: CC-BY-3.0
Copyright:
Copyright (C) Andrew Rios, 2014
Comment:
These tiles originally came from the (CC-BY) DawnHack,
<http://dragondeplatino.deviantart.com/art/DawnHack-NetHack-3-4-3-UnNetHack-5-1-0-416312313>.
Comment:
Because this file only specifies artwork and is entirely independent
of NetHack itself, there's no need for the license to be "combinable"
with that of NetHack 4 as a whole.
Files: tilesets/dat/tiles/dawnlike-16.txt
License: CC-BY-SA-3.0
Copyright:
Copyright (C) Andrew Rios, 2014
.
Dawnlike is registered under a CC-BY-SA 3.0 license, meaning that you
are free to redistribute or edit any part of this tileset as long as
you do not take the credit for it. I cannot stop you from using this
tileset commercially, so feel free to sell any games using Dawnlike.
.
If you use this tileset you must accredit DawnBringer. That mad
color-bending genius came up with the palette this entire pack lives
on. Without his palette, I would probably never would have even
finished DawnHack. As for crediting me, I have a unique
request. Inside "Reptiles.png" you will find a Platino sprite. If you
use Dawnlike, you MUST use this sprite and hide him very well!
Comment:
Because this file only specifies artwork and is entirely independent
of NetHack itself, there's no need for the license to be "combinable"
with that of NetHack 4 as a whole.
Files: tilesets/dat/tiles/rltiles-32.png
License: rltiles-attribution
You can use these tilesets in your program freely. Please include the
following text in your distribution package, either as a separate
file or incorpolated into your license notice document. The fourth
line is optional: Delete it if you have not modified the tiles. If
you have modified some of the tiles, replace "YOURNAME" by your name.
Comment:
"Fourth line" in the license appears to be referring to the "Some of
the tiles" line, which previously ended "YOURNAME" rather than "Raz".
The "following text" is under the "Copyright" section here.
Copyright:
Part of (or All) the graphic tiles used in this program is the public
domain roguelike tileset "RLTiles".
Some of the tiles have been modified by Raz.
.
You can find the original tileset at:
http://rltiles.sf.net
.
The list of contributors to the original RLTiles was:
.
Denzi
=========
dwarf lord, watchman, watch captain, page, raven,
*About half of the Dungeon Crawl tiles*
*Allmost all the player tiles*
.
Alex Korol
=========
dc/abomination*.bmp, 64x64 stairs tile, 64x64 swamp dragon
.
Edger
=========
Cerberus
.
Wan-ichi
=========
werejackal, werewolf, leocrotta, wumpus,
titanothere, baluchitherium, wererat
.
So-Miya
=========
chickatrice, pyrolisk, vampire, vampire mage
storm giant, silver dragon scale mail, shimmering dragon scale mail
silver dragon scales, shimmering dragon scales, baby shimmering dragon
shimmering dragon, baby silver dragon, silver dragon
master mind flayer, leather cloak, magcal explosions
.
Haruko Numata
=========
rope golem, leather golem, flesh golem, clay golem
stone golem, horned devil,
Lord Carnarvon, Pelias, Shaman Karnov, Hippocrates,
King Arthur, Arch Priest, Master of Thieves, Norn, Wizard of Balance,
low boots, iron shoes, high boots, combat boots, jungle boots,
hiking boots, mud boots
.
Tatsuya
=========
knight(3D), samurai(3D), barbarian(3D)
hill giant(3D), dragons(3D)
.
from AllegroHack (Kelly Youngblood, Paul Pliska, John Harris)
=========
gas spore, flaming sphere, shocking sphere
.
Dainokata
=========
warg, manes, shrieker,
water moccasin, elf zombie,human zombie,
straw golem, iron golem, wererat, shopkeeper,
guard, iguana, caveman, healer, rogue,
tourist, dart, aklys, elven bow,
orcish bow, elven cloak,
orcish cloak, opera cloak, sack,
lock pick, lamp, blindfold, towel,
leash, stethoscope, tinning kit, figurine,
cram ration, food ration, statue, alter, sink
.
Zmy
=========
dog, large dog, bugbear, rothe, ape, owlbear,
skeleton, Woodland-elf, Green-elf, Grey-elf,
Croesus, marilith, vrock, hezrou, nalfeshnee, Orcus,
Demogorgon, cavewoman, Elwing, dwarvish mattock,
pickaxe, Kop Lieutenant, Kop Sergeant, elf-lord
Oracle, Archon, Snake, pyton, cobra, Earendil
Files: tilesets/dat/catalogues/*.txt*
License: NGPL
Copyright: Copyright (C) 2013, 2014 Alex Smith
Files: tilesets/dat/maps/*.map
License: NGPL
Copyright:
It's unclear whether these files are copyrightable at all, being a list of
short phrases in an order required for interoperability (this lists the
sequence of tiles used in existing tile images used in previous versions of
NetHack). Thus, they may well be public domain. If not, they are definitely
NGPL-compatible, given that all the sources on which they are based are
NGPL; the main original sources are libnethack/src/{objects,mon,drawing}.c,
which would give the following combined copyright:
.
Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
Copyright (c) Mike Threepoint, 1989.
Copyright (c) NetHack Development Team 1992.
Files: tilesets/dat/tiles/rltiles.map tilesets/dat/text/dungeoncolors.txt
License: NGPL
Copyright:
Copyright (C) 2014 Alex Smith
.
This file was written by Alex Smith, and encodes a dungeon coloring
scheme suggested by Raz (the RLtiles artist).
Files: tilesets/dat/tiles/los-transformations.txt
License: NGPL
Copyright: Copyright (C) 2015 Alex Smith
Files: tilesets/dat/maps/dawnlike.map
License: CC-BY-SA-3.0
Copyright: Copyright (C) 2014 Alex Smith
Comment:
Unlike some other files in its directory, this one is rather more complex and
involves creative input (the selection of which tiles from DawnLike should be
used to represent which objects in NetHack). Thus, it is highly unlikely to
be public domain. (Rather, it has been placed under the same license as
DawnLike, to simplify the license of the resulting tileset post-compilation.)
Files: tilesets/dat/fonts/*.txt
License: NGPL
Copyright: Copyright (C) 2002 Andrew Apted <[email protected]>
Comment: The format of these files in the original source made it
impossible for them to contain an explicit copyright notice. However,
they are definitively NGPL (due to being distributed with the
NGPL'd Slash'EM), and are very likely to have the copyright
conditions shown above, because all the other files in the directory
had that copyright notice.
Files: tilesets/dat/text/*.txt
License: NGPL
Copyright: Copyright (C) 2014 Alex Smith
Files: tilesets/src/bigtile.c tilesets/src/magtile.c
License: NGPL
Copyright: Copyright (c) NetHack Development Team 1995
Files: tilesets/util/*.c tilesets/include/tilecompile.h
License: NGPL
Copyright: Copyright (C) 2014 Alex Smith
Files: tilesets/src/fallback-tileset-image.c
License: NGPL
Copyright: Copyright (C) 2015 Alex Smith
Files: tilesets/util/tileset-image.c
License: NGPL
Copyright:
Copyright (C) Andrew Apted <[email protected]> 2002
Slash'EM Development Team 2003
Copyright (C) 2014 Alex Smith
Files: tilesets/include/tilesequence.h
License: NGPL
Copyright:
Copyright (c) Dean Luick, with acknowledgements to Kevin Darcy and Dave Cohrs 1990
Copyright (c) 2013 Alex Smith
Files: tilesets/src/tilesequence.c
License: NGPL
Copyright: Copyright (c) 2013 Alex Smith
Files: scripts/*
License: NGPL
Copyright: Copyright (c) 2013-2014 Alex Smith
Files: dist/debian/* dist/common/* dist/version-number-updates.txt
License: NGPL
Copyright: Copyright (c) 2013-2014 Alex Smith
Files: doc/changelog.txt doc/faq.txt doc/mainloop.txt doc/philosophy.txt doc/saves.txt doc/developer-information.txt
License: NGPL
Copyright: Copyright (c) 2013-2015 Alex Smith
Files: doc/changelog-fiqhack.txt
Locense: public-domain
Copyright: Not Applicable / Waived by Author
Files: doc/nethack4.pod doc/tilecompile.pod
License: NGPL
Copyright: Copyright (c) 2014-2015 Alex Smith
Files: doc/nh4ct.pod
License: NGPL
Copyright:
Copyright (c) 2013-2015 Alex Smith
.
This documentation file was originally based on the tiles documentation from
Slash'EM, but it is unclear if any of that documentation is still left.
.
(The Slash'EM documentation in question is NGPL, but does not list an explicit
author.)
Files: doc/ai.txt
License: NGPL
Copyright: Copyright (C) 2015 Alex Smith
Files: doc/dungeon.txt
License: NGPL
Copyright: Copyright (c) 2013 Sean Hunt
Files: doc/server_protocol.txt
License: NGPL
Copyright:
This document documents the version of the network protocol used in
NetHack 4.3, and was written by Daniel Thaler, GreyKnight, Alex Smith.
Files: doc/tilesets.txt
License: NGPL
Copyright: Copyright (c) 2013 Alex Smith
Comment: Loosely based on the equivalent documentation from Slash'EM
(which is also NGPL, and does not list an author). The vast majority
was written by Alex Smith, however.
Files: doc/guidebook.asc
License: NGPL
Copyright:
This file has no explicit copyright notice, but based on the history
of the files, this appears to be a good approximation of the
situation:
Copyright (c) 1987-2014 Eric S. Raymond
Copyright (c) 1989 Mike Threepoint [and possibly other years]
Files: .indent.pro
License: NGPL
Copyright: Copyright (c) 2013 Alex Smith
Files: README
License: NGPL
Copyright: Copyright (c) 2013 Alex Smith
Files: prebuilt/README.prebuilt
License: public-domain
(The license on the file is not specified explicitly.)
Copyright: This file is only one short sentence. It was written by
Alex Smith, who does not wish to enforce copyright on it. (It's
also entirely unused during the build, and exists only to explain the
purpose of the directory in which it resides.)
Files: COPYING
License: NGPL
Copyright: Copyright (C) 2013-2015 Alex Smith
Files: aimake.rules
License: NGPL
Copyright: Copyright (c) Alex Smith, 2013
Files: aimake
License: GPL-3+
Copyright: Copyright (C) 2013, 2014, 2015 Alex Smith
Comment: aimake is only used as the build system and none of it is compiled
into the resulting executables. As such, there is no license clash between
it and the files it's compiling, just as there is no problem using a GPL'd
compiler to compile proprietary source.
Files: libnethack/dat/license
License: verbatim
Everyone is permitted to copy and distribute verbatim copies of this
license, but changing it is not allowed.
Copyright:
Copyright 1989 M. Stephenson
Copyright 1988 Richard M. Stallman
Comment:
The license under which the text of the NGPL itself is distributed.
It is not used for any code.
Files: libnethack/dat/gpl
License: verbatim
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc.
Comment:
The license under which the text of the GPL-2 itself is distributed.
It is not used for any code.
Files: libnethack/util/savemap.pl
License: Expat
Copyright: Copyright (c) 2014 Derrick Sund
Files: libjansson/*
License: Expat
Copyright: Copyright (c) 2009-2011 Petri Lehtinen <[email protected]>
License: NGPL
NETHACK GENERAL PUBLIC LICENSE
(Copyright 1989 M. Stephenson)
.
(Based on the BISON general public license,
copyright 1988 Richard M. Stallman)
.
Everyone is permitted to copy and distribute verbatim copies of this
license, but changing it is not allowed. You can also use this wording to
make the terms for other programs.
.
The license agreements of most software companies keep you at the mercy of
those companies. By contrast, our general public license is intended to give
everyone the right to share NetHack. To make sure that you get the rights we
want you to have, we need to make restrictions that forbid anyone to deny you
these rights or to ask you to surrender the rights. Hence this license
agreement.
.
Specifically, we want to make sure that you have the right to give away
copies of NetHack, that you receive source code or else can get it if you
want it, that you can change NetHack or use pieces of it in new free
programs, and that you know you can do these things.
.
To make sure that everyone has such rights, we have to forbid you to
deprive anyone else of these rights. For example, if you distribute copies
of NetHack, you must give the recipients all the rights that you have. You
must make sure that they, too, receive or can get the source code. And you
must tell them their rights.
.
Also, for our own protection, we must make certain that everyone finds out
that there is no warranty for NetHack. If NetHack is modified by someone
else and passed on, we want its recipients to know that what they have is
not what we distributed.
.
Therefore we (Mike Stephenson and other holders of NetHack copyrights) make
the following terms which say what you must do to be allowed to distribute or
change NetHack.
.
.
COPYING POLICIES
.
1. You may copy and distribute verbatim copies of NetHack source code as
you receive it, in any medium, provided that you keep intact the notices on
all files that refer to copyrights, to this License Agreement, and to the
absence of any warranty; and give any other recipients of the NetHack
program a copy of this License Agreement along with the program.
.
2. You may modify your copy or copies of NetHack or any portion of it, and
copy and distribute such modifications under the terms of Paragraph 1 above
(including distributing this License Agreement), provided that you also do the
following:
.
a) cause the modified files to carry prominent notices stating that you
changed the files and the date of any change; and
.
b) cause the whole of any work that you distribute or publish, that in
whole or in part contains or is a derivative of NetHack or any part
thereof, to be licensed at no charge to all third parties on terms
identical to those contained in this License Agreement (except that you
may choose to grant more extensive warranty protection to some or all
third parties, at your option)
.
c) You may charge a distribution fee for the physical act of
transferring a copy, and you may at your option offer warranty protection
in exchange for a fee.
.
3. You may copy and distribute NetHack (or a portion or derivative of it,
under Paragraph 2) in object code or executable form under the terms of
Paragraphs 1 and 2 above provided that you also do one of the following:
.
a) accompany it with the complete machine-readable source code, which