2009-02-17 15:09:09 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* 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 2
|
|
|
|
* of the License, 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* $URL$
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
*/
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2009-02-24 22:41:58 +00:00
|
|
|
#include "sci/tools.h"
|
2009-05-13 21:22:53 +00:00
|
|
|
#include "sci/engine/state.h"
|
2009-05-15 14:07:45 +00:00
|
|
|
#include "sci/engine/sciconsole.h"
|
2009-05-13 21:22:53 +00:00
|
|
|
|
|
|
|
#include "sci/sci.h" // For _console only
|
|
|
|
#include "sci/console.h" // For _console only
|
2009-02-17 20:26:57 +00:00
|
|
|
|
2009-02-21 10:23:36 +00:00
|
|
|
namespace Sci {
|
2009-02-18 19:14:40 +00:00
|
|
|
|
2009-03-07 16:14:20 +00:00
|
|
|
int sci_ffs(int bits) {
|
|
|
|
if (!bits)
|
2009-02-21 04:43:49 +00:00
|
|
|
return 0;
|
2009-03-07 16:14:20 +00:00
|
|
|
|
|
|
|
int retval = 1;
|
|
|
|
|
|
|
|
while (!(bits & 1)) {
|
2009-02-15 06:10:59 +00:00
|
|
|
retval++;
|
2009-03-07 16:14:20 +00:00
|
|
|
bits >>= 1;
|
2009-02-15 06:10:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-05-13 21:22:53 +00:00
|
|
|
#ifdef SCI_CONSOLE
|
|
|
|
|
|
|
|
bool g_redirect_sciprintf_to_gui = false;
|
|
|
|
|
|
|
|
int sciprintf(const char *fmt, ...) {
|
|
|
|
va_list argp;
|
|
|
|
|
|
|
|
assert(fmt);
|
|
|
|
|
|
|
|
// First determine how big a buffer we need
|
|
|
|
va_start(argp, fmt);
|
|
|
|
int bufsize = vsnprintf(0, 0, fmt, argp);
|
|
|
|
assert(bufsize >= 0);
|
|
|
|
va_end(argp);
|
|
|
|
|
|
|
|
// Allocate buffer for the full printed string
|
|
|
|
char *buf = (char *)malloc(bufsize + 1);
|
|
|
|
assert(buf);
|
|
|
|
|
|
|
|
// Print everything according to fmt into buf
|
|
|
|
va_start(argp, fmt); // reset argp
|
|
|
|
int bufsize2 = vsnprintf(buf, bufsize + 1, fmt, argp);
|
|
|
|
assert(bufsize == bufsize2);
|
|
|
|
va_end(argp);
|
|
|
|
|
|
|
|
// Display the result suitably
|
|
|
|
if (g_redirect_sciprintf_to_gui)
|
|
|
|
((SciEngine *)g_engine)->_console->DebugPrintf("%s", buf);
|
|
|
|
printf("%s", buf);
|
|
|
|
|
|
|
|
free(buf);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // SCI_CONSOLE
|
|
|
|
|
2009-02-21 10:23:36 +00:00
|
|
|
} // End of namespace Sci
|