Giter Club home page Giter Club logo

cub3d's Issues

get data from input file

In the first place, we will open, read and parse the .cub file. This file shall contain the following data :

  • floor color
  • ceiling color
  • North wall texture
  • South wall texture
  • West wall texture
  • East wall texture
  • map :
    • wall positions
    • empty cell positions
    • void cell positions
    • player position
    • player direction

All the above shall be stored in the following data structures :

typedef struct s_player	t_player;

struct s_player
{
    size_t	pos[2];
    double	direction;
};
typedef struct s_image	t_image;

struct s_image
{
    void	*ptr;
    uint32_t	*addr;
    uint16_t	width;
    uint16_t	height;
    uint16_t	bpp;
    uint16_t	line_len;
    uint16_t	endian;
};
typedef struct s_map	t_map;

struct s_map
{
    t_image	wall_textures[4];
    uint32_t	floor_color;
    uint32_t	ceiling_color;
    char	**raw_map;
    
};
typedef struct t_game	t_game;

struct s_game
{
    t_player	player;
    t_map	map;
};

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.