bgfx/examples/common/entry/cmd.cpp

116 lines
2.3 KiB
C++
Raw Normal View History

/*
2015-01-01 18:04:46 -05:00
* Copyright 2010-2015 Branimir Karadzic. All rights reserved.
* License: http://www.opensource.org/licenses/BSD-2-Clause
*/
2013-08-08 01:01:46 -04:00
#include <ctype.h> // isspace
#include <stdint.h>
#include <stdlib.h> // size_t
2013-08-08 01:01:46 -04:00
#include <string.h> // strlen
2015-02-09 23:12:46 -05:00
#include <bx/allocator.h>
#include <bx/hash.h>
2014-07-01 01:46:54 -04:00
#include <bx/tokenizecmd.h>
#include "dbg.h"
#include "cmd.h"
2015-02-08 13:25:53 -05:00
#include "entry_p.h"
2014-11-16 21:59:17 -05:00
#include <tinystl/allocator.h>
2014-11-16 21:59:17 -05:00
#include <tinystl/string.h>
#include <tinystl/unordered_map.h>
namespace stl = tinystl;
struct CmdContext
{
CmdContext()
{
}
~CmdContext()
{
}
void add(const char* _name, ConsoleFn _fn, void* _userData)
{
uint32_t cmd = bx::hashMurmur2A(_name, (uint32_t)strlen(_name) );
BX_CHECK(m_lookup.end() == m_lookup.find(cmd), "Command \"%s\" already exist.", _name);
Func fn = { _fn, _userData };
m_lookup.insert(stl::make_pair(cmd, fn) );
}
void exec(const char* _cmd)
{
for (const char* next = _cmd; '\0' != *next; _cmd = next)
{
char commandLine[1024];
uint32_t size = sizeof(commandLine);
int argc;
char* argv[64];
2014-07-01 01:46:54 -04:00
next = bx::tokenizeCommandLine(_cmd, commandLine, size, argc, argv, BX_COUNTOF(argv), '\n');
if (argc > 0)
{
int err = -1;
uint32_t cmd = bx::hashMurmur2A(argv[0], (uint32_t)strlen(argv[0]) );
CmdLookup::iterator it = m_lookup.find(cmd);
if (it != m_lookup.end() )
{
Func& fn = it->second;
err = fn.m_fn(this, fn.m_userData, argc, argv);
}
switch (err)
{
case 0:
break;
case -1:
{
2014-11-16 21:59:17 -05:00
stl::string tmp(_cmd, next-_cmd - (*next == '\0' ? 0 : 1) );
DBG("Command '%s' doesn't exist.", tmp.c_str() );
}
break;
default:
{
2014-11-16 21:59:17 -05:00
stl::string tmp(_cmd, next-_cmd - (*next == '\0' ? 0 : 1) );
DBG("Failed '%s' err: %d.", tmp.c_str(), err);
}
break;
}
}
}
}
struct Func
{
ConsoleFn m_fn;
void* m_userData;
};
typedef stl::unordered_map<uint32_t, Func> CmdLookup;
CmdLookup m_lookup;
};
2015-02-09 23:12:46 -05:00
static CmdContext* s_cmdContext;
void cmdInit()
{
s_cmdContext = BX_NEW(entry::getAllocator(), CmdContext);
}
void cmdShutdown()
{
BX_DELETE(entry::getAllocator(), s_cmdContext);
}
void cmdAdd(const char* _name, ConsoleFn _fn, void* _userData)
{
2015-02-09 23:12:46 -05:00
s_cmdContext->add(_name, _fn, _userData);
}
void cmdExec(const char* _cmd)
{
2015-02-09 23:12:46 -05:00
s_cmdContext->exec(_cmd);
}