-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmakeclass.rb
115 lines (74 loc) · 1.84 KB
/
makeclass.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
require 'FileUtils'
def makeHeader(path, classname)
f = File.new(path, "w")
f <<
<<EOF
/*=====================================================================
#{classname}.h
-------------------
Copyright Nicholas Chapman
Generated at #{Time.now.to_s}
=====================================================================*/
#pragma once
namespace Winter
{
/*=====================================================================
#{classname}
-------------------
=====================================================================*/
class #{classname}
{
public:
#{classname}();
~#{classname}();
private:
};
} // end namespace Winter
EOF
f.close
end
def makeCPP(path, classname)
f = File.new(path, "w")
f <<
<<EOF
/*=====================================================================
#{classname}.cpp
-------------------
Copyright Nicholas Chapman
Generated at #{Time.now.to_s}
=====================================================================*/
#include "wnt_#{classname}.h"
namespace Winter
{
#{classname}::#{classname}()
{
}
#{classname}::~#{classname}()
{
}
} // end namespace Winter
EOF
f.close
end
#puts $*.inspect
if $*.length < 2
puts("Usage: ruby makeclass.rb directory classname")
exit(1)
end
directory = $*[0]
classname = $*[1]
header_path = File.join(directory, "wnt_" + classname + ".h")
cpp_path = File.join(directory, "wnt_" + classname + ".cpp")
if File.exist?(header_path)
puts "Error, '#{header_path}' already exists"
exit(1)
end
if File.exist?(cpp_path)
puts "Error, '#{cpp_path}' already exists"
exit(1)
end
makeHeader(header_path, classname)
makeCPP(cpp_path, classname)
puts "Written '#{header_path}'"
puts "Written '#{cpp_path}'"
puts "----------Completed Successfully----------------"