本文整理汇总了Java中com.google.common.io.ByteArrayDataInput.readFloat方法的典型用法代码示例。如果您正苦于以下问题:Java ByteArrayDataInput.readFloat方法的具体用法?Java ByteArrayDataInput.readFloat怎么用?Java ByteArrayDataInput.readFloat使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.common.io.ByteArrayDataInput
的用法示例。
在下文中一共展示了ByteArrayDataInput.readFloat方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: constant
import com.google.common.io.ByteArrayDataInput; //导入方法依赖的package包/类
/**
* Reads a constant value at the given index, which must be one of CONSTANT_String_info,
* CONSTANT_Integer_info, CONSTANT_Float_info, CONSTANT_Long_info, or CONSTANT_Double_info.
*/
Const.Value constant(int index) {
ByteArrayDataInput reader = byteReader.seek(constantPool[index - 1]);
byte tag = reader.readByte();
switch (tag) {
case CONSTANT_LONG:
return new Const.LongValue(reader.readLong());
case CONSTANT_FLOAT:
return new Const.FloatValue(reader.readFloat());
case CONSTANT_DOUBLE:
return new Const.DoubleValue(reader.readDouble());
case CONSTANT_INTEGER:
return new Const.IntValue(reader.readInt());
case CONSTANT_STRING:
return new Const.StringValue(utf8(reader.readUnsignedShort()));
default:
throw new AssertionError(String.format("bad tag: %x", tag));
}
}
示例2: uploadFIFO
import com.google.common.io.ByteArrayDataInput; //导入方法依赖的package包/类
@Override
public void uploadFIFO(ByteArrayDataInput fifo, byte[] fifoData) {
requestRender = true;
byte lastCommand = -1;
while (true)
{
byte b;
try
{
b = fifo.readByte();
}
catch(Exception e)
{
break;
}
if (b == GX_INIT)
{
System.out.println("GX_INIT");
reset();
}
else if (b == GX_ADD_POLYGON)
{
addPolygon(fifo);
}
else if (b == GX_ADD_POLYGONS)
{
int np = fifo.readInt();
for (int i=0; i<np; i++)
addPolygon(fifo);
}
else if (b == GX_CLEAR_POLYGONS)
{
nrpolygons = 0;
}
else if (b == GX_DISABLE_CLEAR)
{
clear = false;
}
else if (b == GX_SET_CLEAR_COLOR)
{
clear = true;
cR = fifo.readFloat();
cG = fifo.readFloat();
cB = fifo.readFloat();
cA = fifo.readFloat();
}
else if (b == GX_LOAD_MATRIX)
{
matrix = new GXMatrix(fifo);
}
else if (b == GX_MULTIPLY_MATRIX)
{
GXMatrix.mul(matrix, new GXMatrix(fifo), matrix);
}
else if (b == GX_LOAD_IDENTITY_MATRIX)
{
matrix = new GXMatrix();
}
}
}
示例3: GXMatrix
import com.google.common.io.ByteArrayDataInput; //导入方法依赖的package包/类
public GXMatrix(ByteArrayDataInput fifo) {
for(int i = 0; i < 16; i++)
m[i] = fifo.readFloat();
}