本文整理汇总了C++中VMDApp::mobile_get_APIsupported方法的典型用法代码示例。如果您正苦于以下问题:C++ VMDApp::mobile_get_APIsupported方法的具体用法?C++ VMDApp::mobile_get_APIsupported怎么用?C++ VMDApp::mobile_get_APIsupported使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类VMDApp
的用法示例。
在下文中一共展示了VMDApp::mobile_get_APIsupported方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: text_cmd_mobile
int text_cmd_mobile(ClientData cd, Tcl_Interp *interp, int argc,
const char *argv[]) {
VMDApp *app = (VMDApp *)cd;
if (argc < 3 || argc > 6) {
// if here, something went wrong, so return an error message
mobile_usage(interp);
return TCL_ERROR;
}
if (!strupncmp(argv[1], "mode", CMDLEN)) {
int m1 = Mobile::OFF;
// see if these are string values
if (!strupncmp(argv[2], "off", CMDLEN)) m1 = Mobile::OFF;
else if (!strupncmp(argv[2], "move", CMDLEN)) m1 = Mobile::MOVE;
else if (!strupncmp(argv[2], "animate", CMDLEN)) m1 = Mobile::ANIMATE;
else if (!strupncmp(argv[2], "tracker", CMDLEN)) m1 = Mobile::TRACKER;
else if (!strupncmp(argv[2], "user", CMDLEN)) m1 = Mobile::USER;
else mobile_usage(interp); // error
if (!app->mobile_set_mode(m1)) {
Tcl_AppendResult(interp, "Unable to set Mobile mode to ",
argv[2], argc > 3 ? argv[3] : NULL, NULL);
// if here, something went wrong, so return an error message
mobile_usage(interp);
return TCL_ERROR;
}
} else if(!strupncmp(argv[1], "port", CMDLEN)) {
int port;
if (sscanf(argv[2], "%d", &port) == 1) {
if (!app->mobile_network_port(port)) {
// if here, something went wrong, so return an error message
mobile_usage(interp);
return TCL_ERROR;
}
} else {
// if here, something went wrong, so return an error message
mobile_usage(interp);
return TCL_ERROR;
}
} else if(!strupncmp(argv[1], "get", CMDLEN)) {
if (!strupncmp(argv[2], "mode", CMDLEN))
{
Tcl_AppendResult(interp, Mobile::get_mode_str((Mobile::MoveMode)app->mobile_get_mode()), NULL);
} else if (!strupncmp(argv[2], "clientList", CMDLEN)) {
ResizeArray <JString *>* ip;
ResizeArray <JString *>* nick;
ResizeArray <bool>* active;
app->mobile_get_client_list( nick, ip, active);
for (int i=0; i<nick->num(); i++)
{
Tcl_AppendResult(interp, " {", NULL);
Tcl_AppendResult(interp, " {", NULL);
// here's what we've got..
// (const char *)(*(*nick)[i])
// now to explain it....
// (const char *) Tcl_AppendResult needs a char*
// (* ) We have a JString* in ResizeArray that we want to be a JString
// (*nick) we have a ResizeArray ptr that we want to be a ResizeArray
// [i] specific array elem
Tcl_AppendResult(interp, (const char *)(*(*nick)[i]), NULL);
Tcl_AppendResult(interp, "}", NULL);
Tcl_AppendResult(interp, " {", NULL);
Tcl_AppendResult(interp, (const char *)(*(*ip)[i]), NULL);
Tcl_AppendResult(interp, "}", NULL);
Tcl_AppendResult(interp, " {", NULL);
char tmp[10]; sprintf(tmp, "%d", (*active)[i]);
Tcl_AppendResult(interp, tmp, NULL);
Tcl_AppendResult(interp, "}", NULL);
Tcl_AppendResult(interp, " }", NULL);
}
} else if (!strupncmp(argv[2], "port", CMDLEN)) {
char tmpstr[20];
sprintf(tmpstr, "%d", app->mobile_get_network_port());
Tcl_AppendResult(interp, tmpstr, NULL);
} else if (!strupncmp(argv[2], "APIsupported", CMDLEN)) {
char tmpstr[20];
sprintf(tmpstr, "%d", app->mobile_get_APIsupported());
Tcl_AppendResult(interp, tmpstr, NULL);
} else mobile_usage(interp); // error
} else if(!strupncmp(argv[1], "sendMsg", CMDLEN)) {
if (argc >= 6)
{
if (!app->mobile_sendMsg(argv[2], argv[3], argv[4], argv[5])) {
// if here, something went wrong, so return an error message
mobile_usage(interp);
return TCL_ERROR;
}
} else mobile_usage(interp); // error
} else if(!strupncmp(argv[1], "set", CMDLEN)) {
//.........这里部分代码省略.........