mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-04-23 15:36:07 +00:00
Notably also adds some metadata files for NixOS * add support for linux clang cross compiles * add linux clang instructions * un-capitalize Mob.horse.* * update the description in flake.nix --------- Co-authored-by: Loki <lokirautio@gmail.com>
32 lines
755 B
C++
32 lines
755 B
C++
#pragma once
|
|
#include "../Minecraft.World/FloatBuffer.h"
|
|
#include "../Minecraft.World/IntBuffer.h"
|
|
|
|
|
|
class TilePos;
|
|
class Vec3;
|
|
class Player;
|
|
class Mob;
|
|
|
|
class Camera
|
|
{
|
|
public:
|
|
static float xPlayerOffs;
|
|
static float yPlayerOffs;
|
|
static float zPlayerOffs;
|
|
|
|
private:
|
|
// static IntBuffer *viewport;
|
|
static FloatBuffer *modelview;
|
|
static FloatBuffer *projection;
|
|
// static FloatBuffer *position;
|
|
|
|
public:
|
|
static float xa, ya, za, xa2, za2;
|
|
|
|
static void prepare(shared_ptr<Player> player, bool mirror);
|
|
|
|
static TilePos *getCameraTilePos(shared_ptr<LivingEntity> player, double alpha);
|
|
static Vec3 *getCameraPos(shared_ptr<LivingEntity> player, double alpha);
|
|
static int getBlockAt(Level *level, shared_ptr<LivingEntity> player, float alpha);
|
|
}; |