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" |
---|
24 | using 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 | #include "render_2d.h" |
---|
38 | SHELL_COMMAND(toggleNodeVisibility, Render2D, toggleNodesVisibility); |
---|
39 | |
---|
40 | |
---|
41 | #include "material.h" |
---|
42 | SHELL_COMMAND(setDiffuseTexture, Material, setDiffuseMap) |
---|
43 | ->defaultValues(MT_NULL, (int)GL_TEXTURE_2D) |
---|
44 | ->completionPlugin(0, CompletorFileSystem()); |
---|
45 | |
---|