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
3f35eea5
Commit
3f35eea5
authored
8 years ago
by
Ori Almog
Browse files
Options
Downloads
Patches
Plain Diff
adjPass
parent
b98cc949
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/include/level.h
+2
-0
2 additions, 0 deletions
src/include/level.h
src/level.cpp
+6
-0
6 additions, 0 deletions
src/level.cpp
src/mastercontroller.cpp
+1
-1
1 addition, 1 deletion
src/mastercontroller.cpp
src/scores.txt
+0
-5
0 additions, 5 deletions
src/scores.txt
with
9 additions
and
6 deletions
src/include/level.h
+
2
−
0
View file @
3f35eea5
...
...
@@ -59,6 +59,8 @@ class Level {
int
delay
;
};
static
const
Coord
nearby
[
8
]
=
{
Coord
(
-
1
,
-
1
),
Coord
(
0
,
-
1
),
Coord
(
1
,
-
1
),
Coord
(
1
,
0
),
Coord
(
1
,
1
),
Coord
(
0
,
1
),
Coord
(
-
1
,
1
),
Coord
(
-
1
,
0
)
};
const
int
MAX_ROOMS
=
9
;
const
double
GOLD_CHANCE
=
.333
;
const
double
ROOM_EXIST_CHANCE
=
0.9
;
...
...
This diff is collapsed.
Click to expand it.
src/level.cpp
+
6
−
0
View file @
3f35eea5
...
...
@@ -345,6 +345,12 @@ std::vector<Coord> Level::traceBack(Coord end, Coord start){
path
.
push_back
(
start
.
copy
());
return
path
;
}
std
::
vector
<
Coord
>
Level
::
getAdjPassable
(
Coord
s
){
}
Coord
Level
::
throwLocation
(
Coord
start
,
Coord
dir
){
...
...
This diff is collapsed.
Click to expand it.
src/mastercontroller.cpp
+
1
−
1
View file @
3f35eea5
...
...
@@ -13,7 +13,7 @@ MasterController::MasterController()
void
MasterController
::
run
()
{
const
int
spacer
=
5
;
std
::
cout
<<
"Welcome to Rogue Reborn!"
<<
std
::
endl
;
TCODConsole
::
setCustomFont
(
"assets/terminal.png"
);
TCODConsole
::
setCustomFont
(
"assets/terminal
.png"
);
//Init console
Coord
lSize
=
Level
::
getSize
();
TCODConsole
::
initRoot
(
lSize
[
0
],
lSize
[
1
]
+
spacer
,
"Rogue Reborn"
,
false
);
...
...
This diff is collapsed.
Click to expand it.
src/scores.txt
deleted
100644 → 0
+
0
−
5
View file @
b98cc949
0,-1,quark,unknown,
0,-1,qwerty,unknown
0,-1,brucethebold,unknown
0,-1,arglebargle,unknown
1350,8,robert the mediocre,was killed by a grue
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