2 Copyright (C) 2010 - Lugaru authors
4 This file is part of Lugaru.
6 Lugaru is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either version 2
9 of the License, or (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15 See the GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 float startbonustotal;
32 // FIXME: make these per-player
51 int award_awards(int *awards)
54 if(damagetaken==0&&player[0].bloodloss==0){
55 awards[numawards]=awardflawless;
59 for(i=1;i<numplayers;i++){
60 if(player[i].dead!=2)alldead=0;
63 awards[numawards]=awardalldead;
67 for(i=1;i<numplayers;i++){
68 if(player[i].dead!=1)alldead=0;
71 awards[numawards]=awardnodead;
74 if(numresponded==0&&!numthrowkill){
75 awards[numawards]=awardstealth;
78 if(numattacks==numstaffattack&&numattacks>0){
79 awards[numawards]=awardbojutsu;
82 if(numattacks==numswordattack&&numattacks>0){
83 awards[numawards]=awardswordsman;
86 if(numattacks==numknifeattack&&numattacks>0){
87 awards[numawards]=awardknifefighter;
90 if(numattacks==numunarmedattack&&numthrowkill==0&&weapons.numweapons>0){
91 awards[numawards]=awardkungfu;
95 awards[numawards]=awardevasion;
98 if(numflipfail==0&&numflipped+numwallflipped*2>20){
99 awards[numawards]=awardacrobat;
102 if(numthrowkill==numplayers-1){
103 awards[numawards]=awardlongrange;
107 for(i=1;i<numplayers;i++){
108 if(player[i].dead!=2)alldead=0;
110 if(numafterkill>0&&alldead){
111 awards[numawards]=awardbrutal;
114 if(numreversals>((float)numattacks)*.8&&numreversals>3){
115 awards[numawards]=awardaikido;
118 if(maxalarmed==1&&numplayers>2){
119 awards[numawards]=awardstrategy;
123 awards[numawards]=awardklutz;