0028441: Coding Rules - move out nested Image_PixMap::ImgFormat enumeration to dedica...
[occt.git] / src / Graphic3d / Graphic3d_MarkerImage.cxx
CommitLineData
a577aaab 1// Created on: 2013-06-25
2// Created by: Dmitry BOBYLEV
d5f74e42 3// Copyright (c) 2013-2014 OPEN CASCADE SAS
a577aaab 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
a577aaab 6//
d5f74e42 7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
a577aaab 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
a577aaab 15
16#include <Graphic3d_MarkerImage.hxx>
17
18#include <Image_PixMap.hxx>
19#include <Standard_Atomic.hxx>
20#include <TColStd_HArray1OfByte.hxx>
21
92efcf78 22IMPLEMENT_STANDARD_RTTIEXT(Graphic3d_MarkerImage,Standard_Transient)
23
a577aaab 24namespace
25{
26 static volatile Standard_Integer THE_MARKER_IMAGE_COUNTER = 0;
a3f6f591 27}
a577aaab 28
a577aaab 29
30// =======================================================================
31// function : Graphic3d_MarkerImage
32// purpose :
33// =======================================================================
34Graphic3d_MarkerImage::Graphic3d_MarkerImage (const Handle(Image_PixMap)& theImage)
c04c30b3 35: myImage (theImage),
a577aaab 36 myMargin (1),
37 myWidth ((Standard_Integer )theImage->Width()),
38 myHeight ((Standard_Integer )theImage->Height())
39{
40 myImageId = TCollection_AsciiString ("Graphic3d_MarkerImage_")
41 + TCollection_AsciiString (Standard_Atomic_Increment (&THE_MARKER_IMAGE_COUNTER));
42
43 myImageAlphaId = TCollection_AsciiString ("Graphic3d_MarkerImageAlpha_")
44 + TCollection_AsciiString (THE_MARKER_IMAGE_COUNTER);
45}
46
47// =======================================================================
48// function : Graphic3d_MarkerImage
49// purpose :
50// =======================================================================
51Graphic3d_MarkerImage::Graphic3d_MarkerImage (const Handle(TColStd_HArray1OfByte)& theBitMap,
52 const Standard_Integer& theWidth,
53 const Standard_Integer& theHeight)
54: myBitMap (theBitMap),
a577aaab 55 myMargin (1),
56 myWidth (theWidth),
57 myHeight (theHeight)
58{
59 myImageId = TCollection_AsciiString ("Graphic3d_MarkerImage_")
60 + TCollection_AsciiString (Standard_Atomic_Increment (&THE_MARKER_IMAGE_COUNTER));
61
62 myImageAlphaId = TCollection_AsciiString ("Graphic3d_MarkerImageAlpha_")
63 + TCollection_AsciiString (THE_MARKER_IMAGE_COUNTER);
64}
65
66// =======================================================================
67// function : GetBitMapArray
68// purpose :
69// =======================================================================
70Handle(TColStd_HArray1OfByte) Graphic3d_MarkerImage::GetBitMapArray (const Standard_Real& theAlphaValue) const
71{
72 if (!myBitMap.IsNull())
73 {
74 return myBitMap;
75 }
76
77 Handle(TColStd_HArray1OfByte) aBitMap;
78 if (myImage.IsNull())
79 {
80 return aBitMap;
81 }
82
83 const Standard_Integer aNumOfBytesInRow = (Standard_Integer )(myImage->Width() / 8) + (myImage->Width() % 8 ? 1 : 0);
84 const Standard_Integer aNumOfBytes = (Standard_Integer )(aNumOfBytesInRow * myImage->Height());
85 const Standard_Integer aHeight = (Standard_Integer )myImage->Height();
86 const Standard_Integer aWidth = (Standard_Integer )myImage->Width();
87 aBitMap = new TColStd_HArray1OfByte (0, aNumOfBytes - 1);
88 aBitMap->Init (0);
89 for (Standard_Integer aRow = 0; aRow < aHeight; aRow++)
90 {
91 for (Standard_Integer aColumn = 0; aColumn < aWidth; aColumn++)
92 {
93 Quantity_Parameter anAlphaValue;
94 Quantity_Color aColor = myImage->PixelColor (aColumn, aRow, anAlphaValue);
95 Standard_Boolean aBitOn = Standard_False;
96
dc858f4c 97 if (myImage->Format() == Image_Format_Alpha)
076ca35c 98 {
99 aBitOn = anAlphaValue > theAlphaValue;
100 }
dc858f4c 101 else if (myImage->Format() == Image_Format_Gray)
a577aaab 102 {
103 aBitOn = aColor.Red() > theAlphaValue;
104 }
105 else
106 {
107 aBitOn = anAlphaValue > theAlphaValue;
108 }
109
008aef40 110 Standard_Integer anIndex = aNumOfBytesInRow * aRow + aColumn / 8;
111 aBitMap->SetValue (anIndex, (Standard_Byte)(aBitMap->Value (anIndex) +
112 (aBitOn ? (0x80 >> (aColumn % 8)) : 0)));
a577aaab 113 }
114 }
115
116 return aBitMap;
117}
118
119// =======================================================================
120// function : GetImage
121// purpose :
122// =======================================================================
123const Handle(Image_PixMap)& Graphic3d_MarkerImage::GetImage()
124{
125 if (!myImage.IsNull())
126 {
127 return myImage;
128 }
129
130 if (myBitMap.IsNull())
131 {
132 return myImage;
133 }
134
135 // Converting a byte array to bitmap image. Row and column offsets are used
136 // to store bitmap in a square image, so the image will not be stretched
137 // when rendering with point sprites.
138 const Standard_Integer aNumOfBytesInRow = myWidth / 8 + (myWidth % 8 ? 1 : 0);
139 const Standard_Integer aSize = Max (myWidth, myHeight);
140 const Standard_Integer aRowOffset = (aSize - myHeight) / 2 + myMargin;
141 const Standard_Integer aColumnOffset = (aSize - myWidth ) / 2 + myMargin;
142 const Standard_Integer aLowerIndex = myBitMap->Lower();
143
144 myImage = new Image_PixMap();
dc858f4c 145 myImage->InitZero (Image_Format_Alpha, aSize + myMargin * 2, aSize + myMargin * 2);
a577aaab 146 for (Standard_Integer aRowIter = 0; aRowIter < myHeight; aRowIter++)
147 {
148 Standard_Byte* anImageRow = myImage->ChangeRow (aRowIter + aRowOffset);
149 for (Standard_Integer aColumnIter = 0; aColumnIter < myWidth; aColumnIter++)
150 {
dde68833 151 Standard_Boolean aBitOn = (myBitMap->Value (aLowerIndex + aNumOfBytesInRow * aRowIter + aColumnIter / 8) & (0x80 >> (aColumnIter % 8))) != 0;
a577aaab 152 anImageRow[aColumnIter + aColumnOffset] = aBitOn ? 255 : 0;
153 }
154 }
155
156 return myImage;
157}
158
159// =======================================================================
160// function : GetImageAlpha
161// purpose :
162// =======================================================================
163const Handle(Image_PixMap)& Graphic3d_MarkerImage::GetImageAlpha()
164{
165 if (!myImageAlpha.IsNull())
166 {
167 return myImageAlpha;
168 }
169
170 if (!myImage.IsNull())
171 {
dc858f4c 172 if (myImage->Format() == Image_Format_Gray
173 || myImage->Format() == Image_Format_Alpha)
a577aaab 174 {
175 myImageAlpha = myImage;
176 }
177 else
178 {
179 myImageAlpha = new Image_PixMap();
dc858f4c 180 myImageAlpha->InitZero (Image_Format_Alpha, myImage->Width(), myImage->Height());
a577aaab 181 myImageAlpha->SetTopDown (Standard_False);
182 Quantity_Parameter anAlpha;
498ce76b 183 for (Standard_Size aRowIter = 0; aRowIter < myImage->Height(); aRowIter++)
a577aaab 184 {
185 Standard_Byte* anImageRow = myImageAlpha->ChangeRow (aRowIter);
498ce76b 186 for (Standard_Size aColumnIter = 0; aColumnIter < myImage->Width(); aColumnIter++)
a577aaab 187 {
7dc9e047 188 myImage->PixelColor ((Standard_Integer)aColumnIter, (Standard_Integer)aRowIter, anAlpha);
a577aaab 189 anImageRow[aColumnIter] = Standard_Byte (255.0 * anAlpha);
190 }
191 }
192 }
193 }
194
195 return myImageAlpha;
196}
197
198// =======================================================================
199// function : GetImageId
200// purpose :
201// =======================================================================
202const TCollection_AsciiString& Graphic3d_MarkerImage::GetImageId() const
203{
204 return myImageId;
205}
206
207// =======================================================================
208// function : GetImageAlphaId
209// purpose :
210// =======================================================================
211const TCollection_AsciiString& Graphic3d_MarkerImage::GetImageAlphaId() const
212{
213 return myImageAlphaId;
214}
215
216// =======================================================================
217// function : GetTextureSize
218// purpose :
219// =======================================================================
220void Graphic3d_MarkerImage::GetTextureSize (Standard_Integer& theWidth,
221 Standard_Integer& theHeight) const
222{
223 theWidth = myWidth;
224 theHeight = myHeight;
225}