OSDN Git Service

e6cf4bb24ef8f857c9580a8b47db03c3fe888fa9
[nyartoolkit-and/nyartoolkit-and.git] / lib / src / jp / nyatla / nyartoolkit / core / rasterreader / NyARRgbPixelReader_INT1D_GRAY_8.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.NyARIntSize;\r
35 \r
36 final public class NyARRgbPixelReader_INT1D_GRAY_8 implements INyARRgbPixelReader\r
37 {\r
38         protected int[] _ref_buf;\r
39 \r
40         private NyARIntSize _size;\r
41 \r
42         public NyARRgbPixelReader_INT1D_GRAY_8(int[] i_buf, NyARIntSize i_size)\r
43         {\r
44                 this._ref_buf = i_buf;\r
45                 this._size = i_size;\r
46         }\r
47 \r
48         public void getPixel(int i_x, int i_y, int[] o_rgb)\r
49         {\r
50                 o_rgb[0] = o_rgb[1]=o_rgb[2]=this._ref_buf[i_x + i_y * this._size.w];\r
51                 return;\r
52         }\r
53 \r
54         public void getPixelSet(int[] i_x, int[] i_y, int i_num, int[] o_rgb)\r
55         {\r
56                 final int width = this._size.w;\r
57                 final int[] ref_buf = this._ref_buf;\r
58                 for (int i = i_num - 1; i >= 0; i--){\r
59                         o_rgb[i * 3 + 0] = o_rgb[i * 3 + 1]=o_rgb[i * 3 + 2]=ref_buf[i_x[i] + i_y[i] * width];\r
60                 }\r
61                 return;\r
62         }\r
63         public void setPixel(int i_x, int i_y, int[] i_rgb) throws NyARException\r
64         {\r
65                 NyARException.notImplement();           \r
66         }\r
67         public void setPixel(int i_x, int i_y, int i_r,int i_g,int i_b) throws NyARException\r
68         {\r
69                 NyARException.notImplement();           \r
70         }\r
71         public void setPixels(int[] i_x, int[] i_y, int i_num, int[] i_intrgb) throws NyARException\r
72         {\r
73                 NyARException.notImplement();           \r
74         }\r
75         public void switchBuffer(Object i_ref_buffer) throws NyARException\r
76         {\r
77                 assert(((int[])i_ref_buffer).length>=this._size.w*this._size.h);\r
78                 this._ref_buf=(int[])i_ref_buffer;\r
79         }       \r
80 }\r