summaryrefslogtreecommitdiffstats
path: root/src/libs/dxvk-native-1.9.2a/src/dxbc/dxbc_reader.cpp
blob: 9b9a340a38794a15db1cc47f9a46b9fa9a69138e (plain)
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
#include <cstring>

#include "dxbc_reader.h"

namespace dxvk {
  
  DxbcTag DxbcReader::readTag() {
    DxbcTag tag;
    this->read(&tag, 4);
    return tag;
  }
  
  
  std::string DxbcReader::readString() {
    std::string result;
    
    while (m_data[m_pos] != '\0')
      result.push_back(m_data[m_pos++]);
    
    m_pos++;
    return result;
  }
  
  
  void DxbcReader::read(void* dst, size_t n) {
    if (m_pos + n > m_size)
      throw DxvkError("DxbcReader::read: Unexpected end of file");
    std::memcpy(dst, m_data + m_pos, n);
    m_pos += n;
  }
  
  
  void DxbcReader::skip(size_t n) {
    if (m_pos + n > m_size)
      throw DxvkError("DxbcReader::skip: Unexpected end of file");
    m_pos += n;
  }
  
  
  DxbcReader DxbcReader::clone(size_t pos) const {
    if (pos > m_size)
      throw DxvkError("DxbcReader::clone: Invalid offset");
    return DxbcReader(m_data + pos, m_size - pos);
  }
  
  
  DxbcReader DxbcReader::resize(size_t size) const {
    if (size > m_size)
      throw DxvkError("DxbcReader::resize: Invalid size");
    return DxbcReader(m_data, size, m_pos);
  }
  
  
  void DxbcReader::store(std::ostream&& stream) const {
    stream.write(m_data, m_size);
  }
  
}