Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/shell/some_shell_commands.cc @ 7428

Last change on this file since 7428 was 7428, checked in by bensch, 18 years ago

orxonox/trunk: move the Pollution of the ShellCommand to some other File

File size: 1.2 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   ### File Specific:
12   main-programmer: Benjamin Grauer
13   co-programmer: ...
14*/
15
16/*!
17 * @file some_shell_commands.cc
18 * @brief All the ShellCommands, that should not pollute the SourceCode.
19 */
20
21//#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_
22
23#include "shell/shell_command.h"
24using namespace OrxShell;
25
26
27
28#include "class_list.h"
29  SHELL_COMMAND_STATIC(debug, ClassList, ClassList::debugS)
30      ->describe("Shows all registered classes, if param1: is a valid ClassName only values of this class are shown. param2: how much output")
31      ->defaultValues(MT_NULL, 1);
32
33#include "p_node.h"
34  SHELL_COMMAND(debugNode, PNode, debugNodeSC);
35  SHELL_COMMAND(setPosition, PNode, setAbsCoor);
36
37
38#include "material.h"
39  SHELL_COMMAND(setDiffuseTexture, Material, setDiffuseMap)
40      ->defaultValues(MT_NULL, (int)GL_TEXTURE_2D)
41      ->completionPlugin(0, CompletorFileSystem());
42
Note: See TracBrowser for help on using the repository browser.