]> git.cworth.org Git - vogl/blob - src/vogleditor/vogleditor_frameitem.h
UI: Fix a bunch of memory leaks; rename a few member variables
[vogl] / src / vogleditor / vogleditor_frameitem.h
1 /**************************************************************************
2  *
3  * Copyright 2013-2014 RAD Game Tools and Valve Software
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  *
24  **************************************************************************/
25
26 #ifndef VOGLEDITOR_FRAMEITEM_H
27 #define VOGLEDITOR_FRAMEITEM_H
28
29 #include <QList>
30
31 // external classes (could be predeclared)
32 #include "vogl_common.h"
33 #include "vogl_trace_packet.h"
34 #include "vogleditor_gl_state_snapshot.h"
35 #include "vogleditor_snapshotitem.h"
36 #include "vogleditor_apicallitem.h"
37
38 class vogleditor_frameItem : public vogleditor_snapshotItem
39 {
40 public:
41    vogleditor_frameItem(uint64_t frameNumber)
42       : m_frameNumber(frameNumber)
43    {
44    }
45
46    ~vogleditor_frameItem()
47    {
48       m_apiCallList.clear();
49    }
50
51    inline uint64_t frameNumber() const
52    {
53       return m_frameNumber;
54    }
55
56    void appendCall(vogleditor_apiCallItem* pItem)
57    {
58       m_apiCallList.append(pItem);
59    }
60
61    inline int callCount() const
62    {
63       return m_apiCallList.size();
64    }
65
66    vogleditor_apiCallItem* call(int index) const
67    {
68       if (index < 0 || index > callCount())
69       {
70          return NULL;
71       }
72
73       return m_apiCallList[index];
74    }
75
76    bool getStartEndTimes(uint64_t& start, uint64_t& end) const
77    {
78       int numCalls = callCount();
79       if (numCalls == 0)
80       {
81          return false;
82       }
83
84       start = m_apiCallList[0]->startTime();
85       end = m_apiCallList[numCalls-1]->endTime();
86       return true;
87    }
88
89 private:
90    uint64_t m_frameNumber;
91    QList<vogleditor_apiCallItem*> m_apiCallList;
92 };
93
94 #endif // VOGLEDITOR_FRAMEITEM_H