Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
RogueReborn
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mikhail Andrenkov
RogueReborn
Commits
6188cd44
Commit
6188cd44
authored
8 years ago
by
Ian Prins
Browse files
Options
Downloads
Patches
Plain Diff
add an inventory screen (not completely tested yet
parent
20aa2397
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/include/invscreen.h
+16
-0
16 additions, 0 deletions
src/include/invscreen.h
src/invscreen.cpp
+23
-0
23 additions, 0 deletions
src/invscreen.cpp
src/playstate.cpp
+4
-0
4 additions, 0 deletions
src/playstate.cpp
with
43 additions
and
0 deletions
src/include/invscreen.h
0 → 100644
+
16
−
0
View file @
6188cd44
#pragma once
#include
"uistate.h"
#include
"playerchar.h"
#include
"../libtcod/include/libtcod.hpp"
#include
"playstate.h"
#include
"level.h"
class
InvScreen
:
public
UIState
{
public:
InvScreen
(
PlayerChar
*
,
Level
*
);
void
draw
(
TCODConsole
*
);
UIState
*
handleInput
(
TCOD_key_t
);
private:
PlayerChar
*
player
;
Level
*
level
;
};
This diff is collapsed.
Click to expand it.
src/invscreen.cpp
0 → 100644
+
23
−
0
View file @
6188cd44
#include
"include/invscreen.h"
#include
"include/playerchar.h"
#include
"include/playstate.h"
#include
"libtcod/include/libtcod.hpp"
InvScreen
::
InvScreen
(
PlayerChar
*
player
,
Level
*
level
)
:
player
(
player
)
,
level
(
level
)
{}
UIState
*
InvScreen
::
handleInput
(
TCOD_key_t
key
)
{
if
(
key
.
vk
==
TCODK_ESCAPE
)
{
return
new
PlayState
(
player
,
level
);
}
return
this
;
}
void
InvScreen
::
draw
(
TCODConsole
*
con
)
{
int
y
=
0
;
for
(
auto
item
:
player
->
getInventory
())
{
con
->
print
(
0
,
y
,
item
.
first
->
getName
().
c_str
());
}
}
This diff is collapsed.
Click to expand it.
src/playstate.cpp
+
4
−
0
View file @
6188cd44
...
...
@@ -3,6 +3,7 @@
#include
"include/playerchar.h"
#include
"include/level.h"
#include
"include/ripscreen.h"
#include
"include/invscreen.h"
#include
"libtcod/include/libtcod.hpp"
#include
<iostream>
#include
<string>
...
...
@@ -160,6 +161,9 @@ UIState* PlayState::handleInput(TCOD_key_t key) {
prompt
=
new
QuitPrompt
(
player
,
level
);
return
this
;
}
if
(
key
.
c
==
'i'
)
{
return
new
InvScreen
(
player
,
level
);
}
//Arrow controls
auto
newPos
=
player
->
getLocation
().
copy
();
if
(
key
.
vk
==
TCODK_UP
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment