Changeset 4655 in orxonox.OLD for orxonox/trunk
- Timestamp:
- Jun 18, 2005, 6:57:55 PM (19 years ago)
- Location:
- orxonox/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/scripts/gtk-config.osXframework
r4097 r4655 13 13 usage() 14 14 { 15 15 cat <<EOF 16 16 Usage: gtk-config [OPTIONS] [LIBRARIES] 17 17 Options: 18 19 20 21 22 18 [--prefix[=DIR]] 19 [--exec-prefix[=DIR]] 20 [--version] 21 [--libs] 22 [--cflags] 23 23 Libraries: 24 25 24 gtk 25 gthread 26 26 EOF 27 27 exit $1 28 28 } 29 29 30 30 if test $# -eq 0; then 31 31 usage 1 1>&2 32 32 fi 33 33 … … 80 80 81 81 if test "$echo_prefix" = "yes"; then 82 82 echo $prefix 83 83 fi 84 84 85 85 if test "$echo_exec_prefix" = "yes"; then 86 86 echo $exec_prefix 87 87 fi 88 88 -
orxonox/trunk/scripts/orxodox.checkFiles.pl
r4462 r4655 1 1 #!/usr/bin/perl 2 ########################################################################## 3 # orxonox - the future of 3D-vertical-scrollers 4 # 5 # Copyright (C) 2004 orx 6 # 2 ########################################################################## 3 # orxonox - the future of 3D-vertical-scrollers # 4 # # 5 # Copyright (C) 2004 orx # 6 # # 7 7 # This program is free software; you can redistribute it and/or modify # 8 8 # it under the terms of the GNU General Public License as published by # 9 9 # the Free Software Foundation; either version 2, or (at your option) # 10 # any later version. 11 # 12 # ### File Specific: 13 # main-programmer: Benjamin Grauer 14 # co-programmer: ... 15 # 10 # any later version. # 11 # # 12 # ### File Specific: # 13 # main-programmer: Benjamin Grauer # 14 # co-programmer: ... # 15 # # 16 16 # This Script is for parsing single or multiple files for their # 17 17 # doxygeb-tags, and outputs the warnings and errors, but prehibits # … … 44 44 if (-e $inputFile) 45 45 { 46 47 48 46 $processFiles = "$processFiles $inputFile"; 47 $numberOfFiles++; 48 print "found .h "; 49 49 } 50 50 $inputFile =~ s/\.h$/\.cc/; 51 51 if (-e $inputFile) 52 52 { 53 54 55 53 $processFiles = "$processFiles $inputFile"; 54 $numberOfFiles++; 55 print "...found .cc "; 56 56 } 57 57 if ($tmpNumber == $numberOfFiles) {print "no matching files found";} -
orxonox/trunk/src/lib/particles/particle_system.cc
r4654 r4655 95 95 this->setType(PARTICLE_DEFAULT_TYPE, 1); 96 96 ParticleEngine::getInstance()->addSystem(this); 97 98 colorAnim[0].setName("test"); //!< \todo delete this line99 97 } 100 98 -
orxonox/trunk/src/lib/particles/quick_animation.cc
r4654 r4655 67 67 void QuickAnimation::addEntry(float position, float value) 68 68 { 69 if (this->getName())70 {71 printf("ADDED KEYFRAME %d\n", this->count);72 }73 74 69 // create the new KeyFrame 75 70 QuickKeyFrame* newKey = new QuickKeyFrame; … … 185 180 float QuickAnimation::getValue(float position) 186 181 { 187 int counter = 0;188 182 while (true) 189 183 { 190 counter++;191 if (counter >= 10)192 {193 printf("FUCK!!! %f\n", position);194 this->debug();195 break;196 197 }198 184 // if we have a match 199 185 if (likely(this->current->position <= position && this->current->next->position >= position))
Note: See TracChangeset
for help on using the changeset viewer.