forked from mpolaczyk/ue4snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnippetsGenerator.py
73 lines (69 loc) · 2.94 KB
/
snippetsGenerator.py
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
#!/usr/bin/env python
from delegatesGenerator import Delegate
class DelegateSnippet:
def __init__(self, title, author, description, shortcut, delegateKind, delegateOwningType, delegateParamTypes, delegateParamNames):
self.title = title
self.author = author
self.description = description
self.shortcut = shortcut
self.delegateKind = delegateKind
self.delegateOwningType = delegateOwningType
self.delegateParamTypes = delegateParamTypes
self.delegateParamNames = delegateParamNames
def Generate(self):
a = '<?xml version=\"1.0\" encoding=\"utf-8\"?>\n\
<CodeSnippets xmlns=\"http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet\">\n\
<CodeSnippet Format=\"1.0.0\">\n\
<Header>\n\
<SnippetTypes>\n\
<SnippetType>Expansion</SnippetType>\n\
</SnippetTypes>\n\
<Title>{title}</Title>\n\
<Author>{author}</Author>\n\
<Description>{description}</Description>\n\
<HelpUrl>\n\
</HelpUrl>\n\
<Shortcut>{shortcut}</Shortcut>\n\
</Header>\n\
<Snippet>\n\
<Declarations>\n'.format(title=self.title, author=self.author, description=self.description, shortcut=self.shortcut)
b = ' <Literal Editable=\"true\">\n\
<ID>delegateName</ID>\n\
<ToolTip>Delegate type name</ToolTip>\n\
<Default>DelegateName</Default>\n\
<Function>\n\
</Function>\n\
</Literal>\n'
c = '' if self.delegateOwningType == '' else ' <Literal Editable=\"true\">\n\
<ID>owningType</ID>\n\
<ToolTip>Delegate owning type name</ToolTip>\n\
<Default>OwningType</Default>\n\
<Function>\n\
</Function>\n\
</Literal>\n'
d = ''
for p in range(1, self.delegateParamNames+1):
d += ' <Literal Editable=\"true\">\n\
<ID>paramName{0}</ID>\n\
<ToolTip>Parameter name</ToolTip>\n\
<Default>Param{1}Name</Default>\n\
<Function>\n\
</Function>\n\
</Literal>\n'.format(p,p)
e = ''
for p in range(1, self.delegateParamTypes+1):
e += ' <Literal Editable=\"true\">\n\
<ID>paramType{0}</ID>\n\
<ToolTip>Parameter type</ToolTip>\n\
<Default>Param{1}Type</Default>\n\
<Function>\n\
</Function>\n\
</Literal>\n'.format(p,p)
f = ' </Declarations>\n\
<Code Language=\"cpp\"><![CDATA['
g = Delegate(self.delegateKind, '$delegateName$', self.delegateOwningType, ['$$paramType{0}$$'.format(p) for p in range(1,self.delegateParamTypes+1)], ['$$paramName{0}$$'.format(p) for p in range(1,self.delegateParamNames+1)]).Generate()
h = '$selected$ $end$]]></Code>\n\
</Snippet>\n\
</CodeSnippet>\n\
</CodeSnippets>'
return ''.join([a, b, c, d, e, f, g, h])