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
|
// "utils.C"
/* Copyright (C) 1994,1995,1996 Steve Hardt
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 1, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Steve Hardt
hardts@mit.edu (valid until Nov. 1996)
hardts@netscape.com
hardts@alum.mit.edu
http://graphics.lcs.mit.edu/~hardts/xevil.html
*/
#ifndef NO_PRAGMAS
#pragma implementation "utils.h"
#endif
// Include Files
#include <iostream.h>
#include "utils.h"
Pixel Xvars::allocNamedColor(int dpyNum,const char *name,Pixel def)
{
XColor actual,database;
// Check for monochrome display.
// Hack, not supposed to look at c_class member of visual.
Status status = 1;
if (((visual[dpyNum]->c_class == PseudoColor) ||
(visual[dpyNum]->c_class == StaticColor) ||
(visual[dpyNum]->c_class == DirectColor) ||
(visual[dpyNum]->c_class == TrueColor)) &&
(status =
XAllocNamedColor(dpy[dpyNum],cmap[dpyNum],(char *)name,&actual,&database)))
return actual.pixel;
else
{
if (!status)
cerr << "Warning:: unable to allocate color " << ((char *)name)
<< "." << endl;
return (def == (Pixel)-1) ? white[dpyNum] : def;
}
}
const char *Xvars::humanColorNames[Xvars::HUMAN_COLORS_NUM] =
{
"blue",
"brown",
"black",
"purple",
"green4",
"pink3",
};
void Utils::insertionSort(int arry[],int numElements)
{
for (int j = 0; j < numElements - 1; j++)
// Set arry[j] to be the minimum from arry[j]..arry[numElements-1].
for (int i = j + 1; i < numElements; i++)
if (arry[i] < arry[j])
{
int tmp = arry[i];
arry[i] = arry[j];
arry[j] = tmp;
}
}
void Utils::randomList(int arry[],int num)
{
int n;
for (n = 0; n < num; n++)
arry[n] = n;
for (n = num - 1; n > 0; n--)
{
int index = choose(n);
int tmp = arry[index];
arry[index] = arry[n];
arry[n] = tmp;
}
}
int Utils::minimum(int arry[],int size)
{
Boolean anySet = False;
int ret = 0;
for (int n = 0; n < size; n++)
if (!anySet || (arry[n] < ret))
{
ret = arry[n];
anySet = True;
}
assert(anySet);
return ret;
}
int Utils::minimum(int arry[],Boolean oks[],int size)
{
Boolean anySet = False;
int ret = -1;
for (int n = 0; n < size; n++)
if (oks[n] && (!anySet || (arry[n] < ret)))
{
ret = arry[n];
anySet = True;
}
return ret;
}
|