Skip to content

Commit eccd1e4

Browse files
authored
Merge pull request #3 from hansonrobotics/random
Random
2 parents 90ae59d + 9736244 commit eccd1e4

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

BINARIES/LinuxChatScript64

131 KB
Binary file not shown.

SRC/mainSystem.cpp

+7-1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ bool server = true; // default is server on LINUX
9494
#endif
9595
#endif
9696
unsigned int port = 1024; // server port
97+
int random_seed = -1; // random seed -1 means random seed is not set
9798
bool commandLineCompile = false;
9899

99100
PrepareMode tmpPrepareMode = NO_MODE; // controls what processing is done in preparation NO_MODE, POS_MODE, PREPARE_MODE
@@ -659,6 +660,7 @@ static void ProcessArgument(char* arg)
659660
size_t len = strlen(hide);
660661
if (hide[len - 1] == '"') hide[len - 1] = 0;
661662
}
663+
else if (!strnicmp(arg, (char*)"seed=", 5)) random_seed = atoi(arg+5);
662664
#ifndef DISCARDSERVER
663665
else if (!stricmp(arg,(char*)"serverretry")) serverRetryOK = true;
664666
else if (!stricmp(arg,(char*)"local")) server = false; // local standalone
@@ -793,6 +795,10 @@ unsigned int InitSystem(int argcx, char * argvx[],char* unchangedPath, char* rea
793795

794796
int oldserverlog = serverLog;
795797
serverLog = true;
798+
if (random_seed != -1) {
799+
printf((char*)"Set random number %d\r\n", random_seed);
800+
srand(random_seed);
801+
}
796802

797803
#ifndef DISCARDSERVER
798804
if (server)
@@ -1151,7 +1157,7 @@ void ProcessInputFile()
11511157
//output user prompt
11521158
if (documentMode || silent) {;} // no prompt in document mode
11531159
else if (*userPrefix) printf((char*)"%s ", ReviseOutput(userPrefix));
1154-
else printf((char*)"%s",(char*)" >");
1160+
else printf((char*)"[%d]> ", volleyCount);
11551161

11561162
*ourMainInputBuffer = ' '; // leave space at start to confirm NOT a null init message, even if user does only a cr
11571163
ourMainInputBuffer[1] = 0;

SRC/os.cpp

+10-5
Original file line numberDiff line numberDiff line change
@@ -1481,11 +1481,16 @@ uint64 Hashit(unsigned char * data, int len,bool & hasUpperCharacters, bool & ha
14811481
return crc;
14821482
}
14831483

1484-
unsigned int random(unsigned int range)
1485-
{
1486-
if (regression || range <= 1) return 0;
1487-
unsigned int x = (unsigned int)X64_Table[randIndex++ % MAXRAND];
1488-
return x % range;
1484+
//unsigned int random(unsigned int range)
1485+
//{
1486+
// if (regression || range <= 1) return 0;
1487+
// unsigned int x = (unsigned int)X64_Table[randIndex++ % MAXRAND];
1488+
// printf((char*)"\r\nRandom number %d\r\n",x);
1489+
// return x % range;
1490+
//}
1491+
1492+
unsigned int random(unsigned int range) {
1493+
return rand() % range;
14891494
}
14901495

14911496
/////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)