number of monster species which have been genocided */
| 2950 | |
| 2951 | /* number of monster species which have been genocided */ |
| 2952 | int |
| 2953 | num_genocides(void) |
| 2954 | { |
| 2955 | int i, n = 0; |
| 2956 | |
| 2957 | for (i = LOW_PM; i < NUMMONS; ++i) { |
| 2958 | if (svm.mvitals[i].mvflags & G_GENOD) { |
| 2959 | ++n; |
| 2960 | if (UniqCritterIndx(i)) |
| 2961 | impossible("unique creature '%d: %s' genocided?", |
| 2962 | i, mons[i].pmnames[NEUTRAL]); |
| 2963 | } |
| 2964 | } |
| 2965 | return n; |
| 2966 | } |
| 2967 | |
| 2968 | /* return a count of the number of extinct species */ |
| 2969 | staticfn int |
no test coverage detected