File: targa_file_structure.cpp

package info (click to toggle)
libclaw 1.7.4-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,080 kB
  • sloc: cpp: 13,287; sh: 227; makefile: 8
file content (146 lines) | stat: -rw-r--r-- 4,300 bytes parent folder | download | duplicates (6)
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/*
  CLAW - a C++ Library Absolutely Wonderful

  CLAW is a free library without any particular aim but being useful to 
  anyone.

  Copyright (C) 2005-2011 Julien Jorge

  This library is free software; you can redistribute it and/or
  modify it under the terms of the GNU Lesser General Public
  License as published by the Free Software Foundation; either
  version 2.1 of the License, or (at your option) any later version.

  This library is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  Lesser General Public License for more details.

  You should have received a copy of the GNU Lesser General Public
  License along with this library; if not, write to the Free Software
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

  contact: julien.jorge@gamned.org
*/
/**
 * \file targa_file_structure.cpp
 * \brief Implementation of the targa::file_structure class.
 * \author Julien Jorge
 */
#include <claw/targa.hpp>


//************************ targa::file_structure::header ***********************



/*----------------------------------------------------------------------------*/
/**
 * \brief Default constructor.
 */
claw::graphic::targa::file_structure::header::header()
{

} // targa::file_structure::header::header()

/*----------------------------------------------------------------------------*/
/**
 * \brief Constructor.
 * \param w The width of the image.
 * \param h The height of the image.
 */
claw::graphic::targa::file_structure::header::header
( unsigned int w, unsigned int h )
{
  id_length = 0;
  color_map = 0;

  image_type = true_color;

  color_map_specification.first_entry_index = 0;
  color_map_specification.length = 0;
  color_map_specification.entry_size = 0;

  image_specification.x_origin = 0;
  image_specification.y_origin = 0;
  image_specification.width = w;
  image_specification.height = h;

  image_specification.bpp = 32; // pixel32

  image_specification.descriptor = 8; // unsigned char
  image_specification.descriptor |= 0x20; // origin is top-left
} // targa::file_structure::header::header()




//************** targa::file_structure::header::specification ******************




/*----------------------------------------------------------------------------*/
/**
 * \brief Is image stored up to down ?
 */
bool
claw::graphic::targa::file_structure::header::specification::
up_down_oriented() const
{
  return descriptor & 0x20;
} // targa::file_structure::header::specification::up_down_oriented()

/*----------------------------------------------------------------------------*/
/**
 * \brief Is image stored left to right ?
 */
bool
claw::graphic::targa::file_structure::header::specification::
left_right_oriented() const
{
  return !(descriptor & 0x10);
} // targa::file_structure::header::specification::left_right_oriented()

/*----------------------------------------------------------------------------*/
/** 
 * \brief Number of bits per pixel assigned to alpha chanel.
 */
unsigned char
claw::graphic::targa::file_structure::header::specification::alpha() const
{
  return descriptor & 0x0F;
} // targa::file_structure::header::specification::alpha()




//********************* targa::file_structure::footer **************************




/*----------------------------------------------------------------------------*/
const std::string
claw::graphic::targa::file_structure::footer::s_signature("TRUEVISION-XFILE.");

/*----------------------------------------------------------------------------*/
/**
 * \brief Constructor.
 */
claw::graphic::targa::file_structure::footer::footer()
  : extension_offset(0), developer_offset(0)
{
  std::copy( s_signature.begin(), s_signature.end(), signature );
  signature[s_signature.length()] = '\0';
} // targa::file_structure::footer::footer()

/*----------------------------------------------------------------------------*/
/**
 * \brief Tell if the data of this footer is valid.
 */
bool claw::graphic::targa::file_structure::footer::is_valid() const
{
  return std::equal( s_signature.begin(), s_signature.end(), signature )
    && signature[s_signature.length()] == '\0';
} // targa::file_structure::footer::is_valid()