mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 14:59:01 +00:00
Changed: #878 Fix typos in comments/code
This commit is contained in:
parent
ec90234947
commit
fad4a00075
6 changed files with 18 additions and 15 deletions
|
@ -107,7 +107,7 @@ public:
|
|||
bool Visible;
|
||||
|
||||
/// Precomputed Lighting.
|
||||
// If true (false by default), then the instance don't cast shadow (used by ig_lighter.exe).
|
||||
// If true (false by default), then the instance don't cast shadow (used by ig_lighter).
|
||||
bool DontCastShadow;
|
||||
// If true (false by default), then the instance's lighting will not be precomputed.
|
||||
bool AvoidStaticLightPreCompute;
|
||||
|
@ -120,7 +120,7 @@ public:
|
|||
* If 0xFF => take Ambient of the sun.
|
||||
*/
|
||||
uint8 LocalAmbientId;
|
||||
/** if true (false by default), the instance don't cast shadow, but ONLY FOR ig_lighter.exe (ig_lighter_lib)
|
||||
/** if true (false by default), the instance don't cast shadow, but ONLY FOR ig_lighter (ig_lighter_lib)
|
||||
* (zone_lighter and zone_ig_lighter ignore it).
|
||||
* This is a special trick for the "Matis Serre" where the exterior mesh cast shadow in the interior, but
|
||||
* is not visible in the interior in realTime because of cluster clipping.... omg :(
|
||||
|
|
|
@ -331,9 +331,9 @@ void displayInfoFileInStream(FILE *logStream, const char *fileName, const set<st
|
|||
fprintf(logStream, " 'StaticLight Not Computed' means the instance has a ASP flag or the ig is not yet lighted\n");
|
||||
fprintf(logStream, " If lighted, for each instance, the format is 'SunContribution(8Bit) - idLight0;idLight1 (or NOLIGHT) - LocalAmbientId (or GLOBAL_AMBIENT)' \n");
|
||||
fprintf(logStream, " DCS means the instance don't cast shadow (used in the lighter)\n");
|
||||
fprintf(logStream, " DCSINT Same but very special for ig_lighter.exe only\n");
|
||||
fprintf(logStream, " DCSEXT Same but very special for zone_lighter and zone_ig_lighter.exe only\n");
|
||||
fprintf(logStream, " ASP means the instance AvoidStaticLightPreCompute (used in the lighter.exe)\n");
|
||||
fprintf(logStream, " DCSINT Same but very special for ig_lighter only\n");
|
||||
fprintf(logStream, " DCSEXT Same but very special for zone_lighter and zone_ig_lighter only\n");
|
||||
fprintf(logStream, " ASP means the instance AvoidStaticLightPreCompute (used in the lighter)\n");
|
||||
fprintf(logStream, " -------------------------------------------------------------\n");
|
||||
uint k;
|
||||
for(k = 0; k < ig._InstancesInfos.size(); ++k)
|
||||
|
|
|
@ -425,13 +425,13 @@ int main (int nNbArg, char **ppArgs)
|
|||
}
|
||||
else
|
||||
{
|
||||
nlwarning ("ERROR (bnp_make.exe) : can't set current directory to %s", ppArgs[2]);
|
||||
nlwarning ("ERROR (bnp_make) : can't set current directory to %s", ppArgs[2]);
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
nlwarning ("ERROR (bnp_make.exe) : can't set current directory to %s", ppArgs[3]);
|
||||
nlwarning ("ERROR (bnp_make) : can't set current directory to %s", ppArgs[3]);
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
@ -439,7 +439,7 @@ int main (int nNbArg, char **ppArgs)
|
|||
{
|
||||
if (chdir (ppArgs[2]) == -1)
|
||||
{
|
||||
nlwarning ("ERROR (bnp_make.exe) : can't set current directory to %s", ppArgs[2]);
|
||||
nlwarning ("ERROR (bnp_make) : can't set current directory to %s", ppArgs[2]);
|
||||
return -1;
|
||||
}
|
||||
//getcwd (sCurDir, MAX_PATH);
|
||||
|
@ -476,7 +476,7 @@ int main (int nNbArg, char **ppArgs)
|
|||
}
|
||||
else
|
||||
{
|
||||
nlwarning ("ERROR (bnp_make.exe) : can't set current directory to %s", path.c_str());
|
||||
nlwarning ("ERROR (bnp_make) : can't set current directory to %s", path.c_str());
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
@ -522,7 +522,7 @@ int main (int nNbArg, char **ppArgs)
|
|||
}
|
||||
else
|
||||
{
|
||||
nlwarning ("ERROR (bnp_make.exe) : can't set current directory to %s", path.c_str());
|
||||
nlwarning ("ERROR (bnp_make) : can't set current directory to %s", path.c_str());
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -25,7 +25,7 @@ int main(int argc, char* argv[])
|
|||
{
|
||||
if (argc <3)
|
||||
{
|
||||
printf ("lock.exe [filein] [fleout]\n\t");
|
||||
printf ("lock [filein] [fleout]\n\t");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -3027,7 +3027,7 @@ void CPatchThread::xDeltaPatch(const string &patch, const string &src, const str
|
|||
}
|
||||
|
||||
|
||||
// Launching xdelta.exe
|
||||
// Launching xdelta
|
||||
/*
|
||||
STARTUPINFO si;
|
||||
PROCESS_INFORMATION pi;
|
||||
|
|
|
@ -1812,7 +1812,8 @@ bool execLoadScript(CStringWriter& stringWriter, vector<string> const& args)
|
|||
NLMISC::CIFile file(NLMISC::CPath::lookup(args[2]));
|
||||
|
||||
vector<string> lines;
|
||||
while (!file.eof()) {
|
||||
while (!file.eof())
|
||||
{
|
||||
const size_t bufferSize = 4*1024;
|
||||
char buffer[bufferSize];
|
||||
file.getline(buffer, bufferSize);
|
||||
|
@ -1844,7 +1845,8 @@ NLMISC_COMMAND(getInfo,"display returned values of buffered commands","")
|
|||
{
|
||||
CLogStringWriter stringWriter(&log);
|
||||
|
||||
FOREACHC(strIt, vector<string>, bufferedRetStrings) {
|
||||
FOREACHC(strIt, vector<string>, bufferedRetStrings)
|
||||
{
|
||||
stringWriter.append(*strIt);
|
||||
}
|
||||
|
||||
|
@ -2995,7 +2997,8 @@ NLMISC_COMMAND(simulateBug, "simulate an old AIS bug; command is one of 'list',
|
|||
initBugSimulationTexts();
|
||||
log.displayNL("Bug simulations");
|
||||
log.displayNL("Id|Description |State");
|
||||
for (int i=0; i<bugSimulationCount; ++i) {
|
||||
for (int i=0; i<bugSimulationCount; ++i)
|
||||
{
|
||||
log.displayNL("%02d|%s|%s", i, simulateBugText(i), simulateBugs[i]?"on":"off");
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue