summaryrefslogtreecommitdiff
path: root/src/main.cpp
blob: baba44a51caa72136c56f494b255fdc86c2e1627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include "main.hpp"

int main()
{
    Screen s;

    Frame map("scripts/map.txt",0,0);
    Frame view(map,s.getHeight(),s.getWidth(),0,0);
    List L;

    Character cursor('X',3,map.getHeight()/2,map.getWidth()/2);

    map.fillWindow();
    cursor.draw(map.getWin());
    //view.center(cursor);
    L.draw(map.getWin());
    view.refresh(); 
    
    while(true)
    {
        char c = getch();

        if	(c == 'h')
		map.add(cursor,cursor.getRow(),cursor.getCol()-1);
        else if	(c == 'l')
            	map.add(cursor,cursor.getRow(),cursor.getCol()+1);
        else if	(c == 'k')
            	map.add(cursor,cursor.getRow()-1,cursor.getCol());
        else if	(c == 'j')
            	map.add(cursor,cursor.getRow()+1,cursor.getCol());
        else if	(c == 'q')
            	break;

        view.center(cursor);
        view.refresh();
        map.fillWindow();
        cursor.draw(map.getWin());
        L.draw(map.getWin());
    }

    return 0;
}