OSDN Git Service

[NyARToolKit for java]update document
[nyartoolkit-and/nyartoolkit-and.git] / lib / src / jp / nyatla / nyartoolkit / core / rasterreader / NyARRgbPixelReader_BYTE1D_B8G8R8X8_32.java
1 /* \r
2  * PROJECT: NyARToolkit\r
3  * --------------------------------------------------------------------------------\r
4  * This work is based on the original ARToolKit developed by\r
5  *   Hirokazu Kato\r
6  *   Mark Billinghurst\r
7  *   HITLab, University of Washington, Seattle\r
8  * http://www.hitl.washington.edu/artoolkit/\r
9  *\r
10  * The NyARToolkit is Java edition ARToolKit class library.\r
11  * Copyright (C)2008-2009 Ryo Iizuka\r
12  *\r
13  * This program is free software: you can redistribute it and/or modify\r
14  * it under the terms of the GNU General Public License as published by\r
15  * the Free Software Foundation, either version 3 of the License, or\r
16  * (at your option) any later version.\r
17  * \r
18  * This program is distributed in the hope that it will be useful,\r
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
21  * GNU General Public License for more details.\r
22  *\r
23  * You should have received a copy of the GNU General Public License\r
24  * along with this program.  If not, see <http://www.gnu.org/licenses/>.\r
25  * \r
26  * For further information please contact.\r
27  *      http://nyatla.jp/nyatoolkit/\r
28  *      <airmail(at)ebony.plala.or.jp> or <nyatla(at)nyatla.jp>\r
29  * \r
30  */\r
31 package jp.nyatla.nyartoolkit.core.rasterreader;\r
32 \r
33 import jp.nyatla.nyartoolkit.NyARException;\r
34 import jp.nyatla.nyartoolkit.core.types.NyARBufferType;\r
35 import jp.nyatla.nyartoolkit.core.types.NyARIntSize;\r
36 \r
37 /**\r
38  * このクラスは、{@link NyARBufferType#BYTE1D_B8G8R8X8_32}形式のラスタバッファに対応する、ピクセルリーダです。\r
39  */\r
40 final public class NyARRgbPixelReader_BYTE1D_B8G8R8X8_32 implements INyARRgbPixelReader\r
41 {\r
42         /** 参照する外部バッファ*/\r
43         protected byte[] _ref_buf;\r
44         private NyARIntSize _ref_size;\r
45         /**\r
46          * コンストラクタです。\r
47          * 参照するラスタのバッファとサイズを指定して、インスタンスを作成します。\r
48          * @param i_buf\r
49          * ラスタのバッファオブジェクトの参照値\r
50          * @param i_size\r
51          * ラスタのサイズオブジェクトの参照値。\r
52          */\r
53         public NyARRgbPixelReader_BYTE1D_B8G8R8X8_32(byte[] i_ref_buf, NyARIntSize i_size)\r
54         {\r
55                 this._ref_buf=i_ref_buf;\r
56                 this._ref_size = i_size;\r
57         }\r
58         /**\r
59          * この関数は、指定した座標の1ピクセル分のRGBデータを、配列に格納して返します。\r
60          */\r
61         public void getPixel(int i_x, int i_y, int[] o_rgb)\r
62         {\r
63                 final byte[] ref_buf =this._ref_buf;\r
64                 final int bp = (i_x + i_y * this._ref_size.w) * 4;\r
65                 o_rgb[0] = (ref_buf[bp + 2] & 0xff);// R\r
66                 o_rgb[1] = (ref_buf[bp + 1] & 0xff);// G\r
67                 o_rgb[2] = (ref_buf[bp + 0] & 0xff);// B\r
68                 return;\r
69         }\r
70         /**\r
71          * この関数は、座標群から、ピクセルごとのRGBデータを、配列に格納して返します。\r
72          */\r
73         public void getPixelSet(int[] i_x, int[] i_y, int i_num, int[] o_rgb)\r
74         {\r
75                 int bp;\r
76                 final int width = this._ref_size.w;\r
77                 final byte[] ref_buf =this._ref_buf;\r
78                 for (int i = i_num - 1; i >= 0; i--) {\r
79                         bp = (i_x[i] + i_y[i] * width) * 4;\r
80                         o_rgb[i * 3 + 0] = (ref_buf[bp + 2] & 0xff);// R\r
81                         o_rgb[i * 3 + 1] = (ref_buf[bp + 1] & 0xff);// G\r
82                         o_rgb[i * 3 + 2] = (ref_buf[bp + 0] & 0xff);// B\r
83                 }\r
84                 return;\r
85         }\r
86         /**\r
87          * この関数は、RGBデータを指定した座標のピクセルにセットします。\r
88          */\r
89         public void setPixel(int i_x, int i_y, int[] i_rgb) throws NyARException\r
90         {\r
91                 final byte[] ref_buf =this._ref_buf;\r
92                 final int bp = (i_x + i_y * this._ref_size.w) * 4;\r
93                 ref_buf[bp+2] = (byte)i_rgb[0];// R\r
94                 ref_buf[bp+1] = (byte)i_rgb[1];// G\r
95                 ref_buf[bp+0] = (byte)i_rgb[2];// B     \r
96         }\r
97         /**\r
98          * この関数は、RGBデータを指定した座標のピクセルにセットします。\r
99          */\r
100         public void setPixel(int i_x, int i_y, int i_r,int i_g,int i_b) throws NyARException\r
101         {\r
102                 final byte[] ref_buf =this._ref_buf;\r
103                 final int bp = (i_x + i_y * this._ref_size.w) * 4;\r
104                 ref_buf[bp+2] = (byte)i_r;// R\r
105                 ref_buf[bp+1] = (byte)i_g;// G\r
106                 ref_buf[bp+0] = (byte)i_b;// B  \r
107         }\r
108         /**\r
109          * この関数は、機能しません。\r
110          */     \r
111         public void setPixels(int[] i_x, int[] i_y, int i_num, int[] i_intrgb) throws NyARException\r
112         {\r
113                 NyARException.notImplement();           \r
114         }\r
115         /**\r
116          * この関数は、参照しているバッファをi_ref_bufferへ切り替えます。\r
117          * 通常は、このインスタンスを所有するクラスが使います。ユーザが使うことはありません。\r
118          * 関数は、入力値のバッファサイズと、型だけを確認します。\r
119          */     \r
120         public void switchBuffer(Object i_ref_buffer) throws NyARException\r
121         {\r
122                 assert(((byte[])i_ref_buffer).length>=this._ref_size.w*this._ref_size.h*4);\r
123                 this._ref_buf=(byte[])i_ref_buffer;\r
124         }               \r
125 }