Changeset 507
- Timestamp:
- 08/12/07 06:52:22 (1 year ago)
- Files:
-
- trunk/src/cave.c (modified) (1 diff)
- trunk/src/cmd1.c (modified) (1 diff)
- trunk/src/cmd2.c (modified) (1 diff)
- trunk/src/cmd5.c (modified) (1 diff)
- trunk/src/cmd6.c (modified) (1 diff)
- trunk/src/dungeon.c (modified) (1 diff)
- trunk/src/generate.c (modified) (1 diff)
- trunk/src/load.c (modified) (1 diff)
- trunk/src/main-gcu.c (modified) (2 diffs)
- trunk/src/main-ros.c (modified) (2 diffs)
- trunk/src/main-xxx.c (modified) (2 diffs)
- trunk/src/main.c (modified) (1 diff)
- trunk/src/melee1.c (modified) (1 diff)
- trunk/src/melee2.c (modified) (2 diffs)
- trunk/src/monster1.c (modified) (1 diff)
- trunk/src/monster2.c (modified) (1 diff)
- trunk/src/object1.c (modified) (1 diff)
- trunk/src/randart.c (modified) (1 diff)
- trunk/src/save.c (modified) (1 diff)
- trunk/src/spells1.c (modified) (1 diff)
- trunk/src/spells2.c (modified) (1 diff)
- trunk/src/tables.c (modified) (1 diff)
- trunk/src/util.c (modified) (1 diff)
- trunk/src/wizard1.c (modified) (1 diff)
- trunk/src/wizard2.c (modified) (1 diff)
- trunk/src/x-spell.c (modified) (1 diff)
- trunk/src/xtra1.c (modified) (1 diff)
- trunk/src/xtra2.c (modified) (1 diff)
- trunk/src/z-blockfile.c (modified) (1 diff)
- trunk/src/z-quark.c (modified) (1 diff)
- trunk/src/z-rand.c (modified) (2 diffs)
- trunk/src/z-term.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/cave.c
r490 r507 1 /* File: cave.c */ 2 3 /* 1 /* 2 * File: cave.c 3 * Purpose: Lighting and update functions 4 * 4 5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 9 */ 10 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 17 */ 11 18 #include "angband.h" 12 19 trunk/src/cmd1.c
r466 r507 1 /* File: cmd1.c */2 3 1 /* 4 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 2 * File: xxx.c 3 * Purpose: Searching, movement, and pickup 4 * 5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke, 6 * Copyright (c) 2007 Leon Marrick 7 * 8 * This work is free software; you can redistribute it and/or modify it 9 * under the terms of either: 10 * 11 * a) the GNU General Public License as published by the Free Software 12 * Foundation, version 2, or 13 * 14 * b) the "Angband licence": 15 * This software may be copied and distributed for educational, research, 16 * and not for profit purposes provided that this copyright and statement 17 * are included in all such copies. Other copyrights may also apply. 9 18 */ 10 11 19 #include "angband.h" 12 20 #include "cmds.h" trunk/src/cmd2.c
r465 r507 1 /* File: cmd2.c */ 2 3 /* 1 /* 2 * File: cmd2.c 3 * Purpose: Chest and door opening/closing, disarming, running, resting, &c. 4 * 4 5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 9 */ 10 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 17 */ 11 18 #include "angband.h" 12 19 trunk/src/cmd5.c
r505 r507 1 /* File: cmd5.c */2 3 1 /* 2 * File: cmd5.c 3 * Purpose: Spell and prayer casting/praying 4 * 4 5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 9 17 */ 10 11 18 #include "angband.h" 12 19 trunk/src/cmd6.c
r433 r507 3 3 * Purpose: Eating/quaffing/reading/aiming/staving/zapping/activating 4 4 * 5 * Copyright (c) 1997 -2007 Andrew Sidwell, Ben Harrison, James E. Wilson,6 * Robert A. Koeneke5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 6 * Copyright (c) 2007 Andrew Sidwell 7 7 * 8 8 * This work is free software; you can redistribute it and/or modify it trunk/src/dungeon.c
r505 r507 1 /* File: dungeon.c */2 3 1 /* 2 * File: dungeon.c 3 * Purpose: The game core bits, shared across platforms. 4 * 4 5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 9 17 */ 10 11 18 #include "angband.h" 12 19 #include "z-file.h" trunk/src/generate.c
r458 r507 9 9 * 10 10 * Copyright (c) 1997-2001 Ben Harrison, James E. Wilson, Robert A. Koeneke 11 * Copyright (c) 2006 Leon Marrick 11 12 * 12 13 * This work is free software; you can redistribute it and/or modify it trunk/src/load.c
r501 r507 1 /* File: load.c */ 2 3 /* 1 /* 2 * File: load.c 3 * Purpose: Old-style savefile loading 4 * 4 5 * Copyright (c) 1997 Ben Harrison, and others 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 9 */ 10 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 17 */ 11 18 #include "angband.h" 12 19 trunk/src/main-gcu.c
r399 r507 1 /* File: main-gcu.c */ 2 3 /* 1 /* 2 * File: main-gcu.c 3 * Purpose: Support for "curses" systems 4 * 4 5 * Copyright (c) 1997 Ben Harrison, and others 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. 9 */ 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 17 */ 18 #include "angband.h" 10 19 11 20 … … 37 46 * Consider the use of "savetty()" and "resetty()". XXX XXX XXX 38 47 */ 39 #include "angband.h"40 48 41 49 trunk/src/main-ros.c
r220 r507 3 3 * Purpose: Support for RISC OS versions of Angband 4 4 * 5 * Copyright (c) 2000-2007 Musus Umbra, Antony Sidwell, Thomas Harris,5 * Copyright (c) 2000-2007 Musus Umbra, Antony Sidwell, Thomas Harris, 6 6 * Andrew Sidwell, Ben Harrison. 7 7 * … … 17 17 * are included in all such copies. Other copyrights may also apply. 18 18 */ 19 #include "angband.h" 20 19 21 20 22 #ifdef __riscos 21 22 #include "angband.h"23 23 24 24 /* trunk/src/main-xxx.c
r141 r507 1 /* File: main-xxx.c */ 2 3 /* 1 /* 2 * File: main-xxx.c 3 * Purpose: Outline how to make a new "main-xxx" file. 4 * 4 5 * Copyright (c) 1997 Ben Harrison 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. 9 */ 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 17 */ 18 #include "angband.h" 10 19 11 20 … … 65 74 * Initial framework (and all code) by Ben Harrison (benh@phial.com). 66 75 */ 67 68 69 #include "angband.h"70 76 71 77 trunk/src/main.c
r500 r507 1 /* File: main.c */ 2 3 /* 1 /* 2 * File: main.c 3 * Purpose: Core game initialisation for UNIX (and other) machines 4 * 4 5 * Copyright (c) 1997 Ben Harrison, and others 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. 9 */ 10 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 17 */ 11 18 #include "angband.h" 12 19 trunk/src/melee1.c
r433 r507 1 /* File: melee1.c */2 3 1 /* 2 * File: melee1.c 3 * Purpose: Monster attacking code 4 * 4 5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 9 17 */ 10 11 18 #include "angband.h" 12 19 trunk/src/melee2.c
r438 r507 1 /* File: melee2.c */2 3 1 /* 4 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 2 * File: melee2.c 3 * Purpose: Monster AI routines 4 * 5 * Copyright (c) 1997 Ben Harrison, David Reeve Sward, Keldon Jones. 6 * 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 9 17 */ 10 11 18 #include "angband.h" 12 19 … … 17 24 /* 18 25 * And now for Intelligent monster attacks (including spells). 19 *20 * Original idea and code by "DRS" (David Reeve Sward).21 *22 * Major modifications by "BEN" (Ben Harrison).23 26 * 24 27 * Give monsters more intelligent attack/spell selection based on trunk/src/monster1.c
r448 r507 1 1 /* 2 * File: obj-info.c2 * File: monster1.c 3 3 * Purpose: Monster description code. 4 4 * trunk/src/monster2.c
r489 r507 1 /* File: monster2.c */ 2 3 /* 1 /* 2 * File: monster2.c 3 * Purpose: Low-level monster manipulation 4 * 4 5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 9 */ 10 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 17 */ 11 18 #include "angband.h" 12 19 trunk/src/object1.c
r455 r507 1 /* File: object1.c */2 3 1 /* 2 * File: object1.c 3 * Purpose: Mainly object descriptions and generic UI functions 4 * 4 5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 9 17 */ 10 11 18 #include "angband.h" 12 19 #include "randname.h" trunk/src/randart.c
r489 r507 1 /* File: randart.c */2 3 4 1 /* 5 * Copyright (c) 1997 Ben Harrison 2 * File: randart.c 3 * Purpose: Random artifact generation 6 4 * 7 * This software may be copied and distributed for educational, research, 8 * and not for profit purposes provided that this copyright and statement 9 * are included in all such copies. Other copyrights may also apply. 5 * Copyright (c) 1998 Greg Wooledge, Ben Harrison, Robert Ruhlmann 6 * 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 10 17 */ 11 12 18 #include "angband.h" 13 19 trunk/src/save.c
r500 r507 1 /* File: save.c */ 2 3 /* 4 * Copyright (c) 1997 Ben Harrison, and others 1 /* 2 * File: save.c 3 * Purpose: Old-style savefile saving 5 4 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 9 */ 10 5 * Copyright (c) [yyyy] [author list] 6 * 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 17 */ 11 18 #include "angband.h" 12 19 #include "option.h" trunk/src/spells1.c
r505 r507 1 /* File: spells1.c */2 3 1 /* 2 * File: spells1.c 3 * Purpose: Some spell effects, and the project() function 4 * 4 5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 9 17 */ 10 11 18 #include "angband.h" 12 19 trunk/src/spells2.c
r421 r507 1 /* File: spells2.c */ 2 3 /* 1 /* 2 * File: spells2.c 3 * Purpose: Various assorted spell effects 4 * 4 5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 9 */ 10 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 17 */ 11 18 #include "angband.h" 12 19 trunk/src/tables.c
r463 r507 1 /* File: tables.c */ 2 3 /* 1 /* 2 * File: tables.c 3 * Purpose: Finely-tuned constants for the game Angband 4 * 4 5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 9 */ 10 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 17 */ 11 18 #include "angband.h" 12 19 trunk/src/util.c
r489 r507 1 /* File: util.c */ 2 3 /* 1 /* 2 * File: util.c 3 * Purpose: Macro code, gamma correction, some high-level UI functions, inkey() 4 * 4 5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 9 */ 10 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 17 */ 11 18 #include "angband.h" 12 19 #include "randname.h" trunk/src/wizard1.c
r469 r507 1 /* File: wizard1.c */ 2 3 /* 1 /* 2 * File: wizard1.c 3 * Purpose: Spoiler generation 4 * 4 5 * Copyright (c) 1997 Ben Harrison, and others 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 9 */ 10 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 17 */ 11 18 #include "angband.h" 12 19 #include "z-file.h" trunk/src/wizard2.c
r505 r507 1 /* File: wizard2.c */ 2 3 /* 1 /* 2 * File: wizard2.c 3 * Purpose: Debug mode commands 4 * 4 5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 9 17 */ 10 18 #include "angband.h" trunk/src/x-spell.c
r505 r507 1 /* File: x-spell.c */2 3 1 /* 2 * File: x-spell.c 3 * Purpose: Spell effect definitions and information about them 4 * 4 5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 9 17 */ 10 11 12 18 #include "angband.h" 13 19 trunk/src/xtra1.c
r505 r507 1 /* File: xtra1.c */ 2 3 /* 1 /* 2 * File: xtra1.c 3 * Purpose: Sidebar and status panel updates, player status calculation 4 * 4 5 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 9 */ 10 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 17 */ 11 18 #include "angband.h" 12 19 trunk/src/xtra2.c
r449 r507 1 /* File: xtra2.c */ 2 3 /* 1 /* 2 * File: xtra2.c 3 * Purpose: Targetting, sorting, panel update, timed effects handling, monster 4 * death 5 * 4 6 * Copyright (c) 1997 Ben Harrison, James E. Wilson, Robert A. Koeneke 5 7 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 9 */ 10 8 * This work is free software; you can redistribute it and/or modify it 9 * under the terms of either: 10 * 11 * a) the GNU General Public License as published by the Free Software 12 * Foundation, version 2, or 13 * 14 * b) the "Angband licence": 15 * This software may be copied and distributed for educational, research, 16 * and not for profit purposes provided that this copyright and statement 17 * are included in all such copies. Other copyrights may also apply. 18 */ 11 19 #include "angband.h" 12 20 #include "cmds.h" trunk/src/z-blockfile.c
r499 r507 1 1 /* 2 * File: save-block.c2 * File: z-blockfile.c 3 3 * Purpose: Blockfile saving and loading 4 4 * trunk/src/z-quark.c
r455 r507 4 4 * that each is only allocated once. 5 5 * 6 * Copyright (c) 1997-2007 Ben Harrison, "Elly" 6 * Copyright (c) 1997 Ben Harrison 7 * Copyright (c) 2007 "Elly" 7 8 * 8 9 * This work is free software; you can redistribute it and/or modify it trunk/src/z-rand.c
r461 r507 1 /* File: z-rand.c */ 2 3 /* 4 * Copyright (c) 1997 Ben Harrison, and others 5 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. Other copyrights may also apply. 9 */ 1 /* 2 * File: z-rand.c 3 * Purpose: A simple RNG for Angband 4 * 5 * Copyright (c) 1997 Ben Harrison, Randy Hutson 6 * 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 17 */ 18 #include "z-rand.h" 19 10 20 11 21 … … 33 43 * "random.c" file from Berkeley but with some major optimizations and 34 44 * algorithm changes. See below for more details. 35 * 36 * Some code by Ben Harrison (benh@phial.com). 37 * 38 * Some code by Randy (randy@stat.tamu.edu). 39 */ 40 41 42 43 #include "z-rand.h" 45 */ 46 47 44 48 45 49 trunk/src/z-term.c
r346 r507 1 /* File: z-term.c */ 2 3 /* 1 /* 2 * File: z-term.c 3 * Purpose: a generic, efficient, terminal window package 4 * 4 5 * Copyright (c) 1997 Ben Harrison 5 6 * 6 * This software may be copied and distributed for educational, research, 7 * and not for profit purposes provided that this copyright and statement 8 * are included in all such copies. 9 */ 10 11 /* Purpose: a generic, efficient, terminal window package -BEN- */ 12 7 * This work is free software; you can redistribute it and/or modify it 8 * under the terms of either: 9 * 10 * a) the GNU General Public License as published by the Free Software 11 * Foundation, version 2, or 12 * 13 * b) the "Angband licence": 14 * This software may be copied and distributed for educational, research, 15 * and not for profit purposes provided that this copyright and statement 16 * are included in all such copies. Other copyrights may also apply. 17 */ 13 18 #include "z-term.h" 14 19
