swr: [rasterizer] Cleanup naming of codegen files
[mesa.git] / src / gallium / drivers / swr / rasterizer / codegen / templates / gen_ar_event.hpp
1 /****************************************************************************
2 * Copyright (C) 2016 Intel Corporation. All Rights Reserved.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * @file ${filename}
24 *
25 * @brief Definitions for events. auto-generated file
26 *
27 * DO NOT EDIT
28 *
29 ******************************************************************************/
30 #pragma once
31
32 #include "common/os.h"
33 #include "core/state.h"
34
35 namespace ArchRast
36 {
37 % for name in protos['enum_names']:
38 enum ${name}
39 {<% names = protos['enums'][name]['names'] %>
40 % for i in range(len(names)):
41 ${names[i].lstrip()}
42 % endfor
43 };
44 % endfor
45
46 //Forward decl
47 class EventHandler;
48
49 //////////////////////////////////////////////////////////////////////////
50 /// Event - interface for handling events.
51 //////////////////////////////////////////////////////////////////////////
52 struct Event
53 {
54 Event() {}
55 virtual ~Event() {}
56
57 virtual void Accept(EventHandler* pHandler) = 0;
58 };
59 % for name in protos['event_names']:
60
61 //////////////////////////////////////////////////////////////////////////
62 /// ${name}Data
63 //////////////////////////////////////////////////////////////////////////
64 #pragma pack(push, 1)
65 struct ${name}Data
66 {<%
67 field_names = protos['events'][name]['field_names']
68 field_types = protos['events'][name]['field_types'] %>
69 // Fields
70 % for i in range(len(field_names)):
71 ${field_types[i]} ${field_names[i]};
72 % endfor
73 };
74 #pragma pack(pop)
75
76 //////////////////////////////////////////////////////////////////////////
77 /// ${name}
78 //////////////////////////////////////////////////////////////////////////
79 struct ${name} : Event
80 {<%
81 field_names = protos['events'][name]['field_names']
82 field_types = protos['events'][name]['field_types'] %>
83 ${name}Data data;
84
85 // Constructor
86 ${name}(
87 % for i in range(len(field_names)):
88 % if i < len(field_names)-1:
89 ${field_types[i]} ${field_names[i]},
90 % endif
91 % if i == len(field_names)-1:
92 ${field_types[i]} ${field_names[i]}
93 % endif
94 % endfor
95 )
96 {
97 % for i in range(len(field_names)):
98 data.${field_names[i]} = ${field_names[i]};
99 % endfor
100 }
101
102 virtual void Accept(EventHandler* pHandler);
103 };
104 % endfor
105 }