]> git.cworth.org Git - vogl/blob - src/vogleditor/vogleditor_frameitem.h
Initial vogl checkin
[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       for (int i = 0; i < m_apiCallList.size(); i++)
49       {
50          delete m_apiCallList[i];
51          m_apiCallList[i] = NULL;
52       }
53       m_apiCallList.clear();
54    }
55
56    inline uint64_t frameNumber() const
57    {
58       return m_frameNumber;
59    }
60
61    void appendCall(vogleditor_apiCallItem* pItem)
62    {
63       m_apiCallList.append(pItem);
64    }
65
66    inline int callCount() const
67    {
68       return m_apiCallList.size();
69    }
70
71    vogleditor_apiCallItem* call(int index) const
72    {
73       if (index < 0 || index > callCount())
74       {
75          return NULL;
76       }
77
78       return m_apiCallList[index];
79    }
80
81    bool getStartEndTimes(uint64_t& start, uint64_t& end) const
82    {
83       int numCalls = callCount();
84       if (numCalls == 0)
85       {
86          return false;
87       }
88
89       start = m_apiCallList[0]->startTime();
90       end = m_apiCallList[numCalls-1]->endTime();
91       return true;
92    }
93
94 private:
95    uint64_t m_frameNumber;
96    QList<vogleditor_apiCallItem*> m_apiCallList;
97 };
98
99 #endif // VOGLEDITOR_FRAMEITEM_H