summaryrefslogtreecommitdiff
path: root/data/weapons/creator.cpp~
diff options
context:
space:
mode:
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..796d095
--- /dev/null
+++ b/data/weapons/creator.cpp~
@@ -0,0 +1,34 @@
1#include <iostream>
2#include <fstream>
3#include <math.h>
4
5using namespace std;
6
7int 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/psi.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}