diff options
| author | Reimar <Reimar@Leike.name> | 2015-12-08 11:31:35 +0100 |
|---|---|---|
| committer | Reimar <Reimar@Leike.name> | 2015-12-08 11:31:35 +0100 |
| commit | e3a66514d57ff4acf2f02df7d86bd2cf8be0e730 (patch) | |
| tree | 686eabd8aac2f2eb9d0b3429fe0feee3f031904a /data/weapons/creator.cpp | |
| download | RCade-e3a66514d57ff4acf2f02df7d86bd2cf8be0e730.tar RCade-e3a66514d57ff4acf2f02df7d86bd2cf8be0e730.tar.gz RCade-e3a66514d57ff4acf2f02df7d86bd2cf8be0e730.tar.bz2 RCade-e3a66514d57ff4acf2f02df7d86bd2cf8be0e730.tar.xz RCade-e3a66514d57ff4acf2f02df7d86bd2cf8be0e730.zip | |
initial commit
Diffstat (limited to 'data/weapons/creator.cpp')
| -rw-r--r-- | data/weapons/creator.cpp | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/data/weapons/creator.cpp b/data/weapons/creator.cpp new file mode 100644 index 0000000..c5393eb --- /dev/null +++ b/data/weapons/creator.cpp | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | #include <iostream> | ||
| 2 | #include <fstream> | ||
| 3 | #include <math.h> | ||
| 4 | |||
| 5 | using namespace std; | ||
| 6 | |||
| 7 | int main() | ||
| 8 | { | ||
| 9 | ofstream o; | ||
| 10 | o.open("novaspitter1.txt"); | ||
| 11 | o << "Novaspitter 1\n"; | ||
| 12 | o << "data/images/empty.bmp\n"; | ||
| 13 | o << 8 << '\n'; | ||
| 14 | o << 1 << '\n'; | ||
| 15 | o << 30 << '\n'; | ||
| 16 | int shots = 6; | ||
| 17 | double T = 0.8; | ||
| 18 | double duration = 0.0; | ||
| 19 | double start = 0.7; | ||
| 20 | double speed = 250; | ||
| 21 | int Ncircles = 1; | ||
| 22 | o << shots << endl; | ||
| 23 | for(int i = 0; i < shots; ++i) | ||
| 24 | { | ||
| 25 | o << T << '\n'; | ||
| 26 | o << T - start - ((double) i)/((double) shots)*duration-0.0001 << '\n'; | ||
| 27 | o << "data/projectiles/spit.txt\n"; | ||
| 28 | o << cos(Ncircles*2*M_PI*i/((double) shots))*speed << '\n'; | ||
| 29 | o << sin(Ncircles*2*M_PI*i/((double) shots))*speed; | ||
| 30 | if(i != shots-1) | ||
| 31 | o << endl; | ||
| 32 | } | ||
| 33 | o.close(); | ||
| 34 | } | ||
