Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Main
Synchronet
Commits
72f77f84
Commit
72f77f84
authored
19 years ago
by
deuce
Browse files
Options
Downloads
Patches
Plain Diff
Quick-n-nasty initial port... needs auditing. File names in upper-case,
etc.
parent
faeb9e3a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
xtrn/tbd/mapmaker.c
+12
-7
12 additions, 7 deletions
xtrn/tbd/mapmaker.c
xtrn/tbd/reroll.c
+18
-10
18 additions, 10 deletions
xtrn/tbd/reroll.c
with
30 additions
and
17 deletions
xtrn/tbd/mapmaker.c
+
12
−
7
View file @
72f77f84
#if 0
#include <io.h>
#endif
#include
<fcntl.h>
#include
<conio.h>
#include
<stdio.h>
#include
<stdlib.h>
#include
<sys\stat.h>
#include
<sys/stat.h>
#include
"xsdk.h"
/* Colour definitions */
#include
"objects.h"
#define N (1<<0)
...
...
@@ -43,7 +45,7 @@ main(void)
int
file
,
v
=
0
,
w
=
0
,
x
=
0
,
y
=
0
,
z
=
1
,
weapons
[
10
],
weapons2
[
10
],
armor
[
10
],
armor2
[
10
],
magic
[
10
],
magic2
[
10
],
num_monster
,
num_gold
,
fountain
[
10
],
stairs
,
staff
;
randomize
();
clrscr
();
xp_
randomize
();
unlink
(
"TBDMAP.DAB"
);
if
((
file
=
open
(
"TBDMAP.DAB"
,
O_RDWR
|
O_BINARY
|
O_CREAT
,
S_IWRITE
|
S_IREAD
))
==-
1
)
{
printf
(
"Error opening map file
\r\n
"
);
...
...
@@ -55,7 +57,7 @@ for (w=0;w<LEVELS;w++) {
lseek
(
file
,
w
*
SQUARE
*
SQUARE
,
SEEK_SET
);
for
(
x
=
0
;
x
<
SQUARE
*
SQUARE
;
x
++
)
{
for
(
y
=
0
;
y
<
7
;
y
++
)
{
/* number of possible doors in each room */
if
(
random
(
4
))
{
if
(
xp_
random
(
4
))
{
switch
(
y
)
{
case
0
:
if
(
x
>
SQUARE
-
1
)
door
|=
N
;
...
...
@@ -161,13 +163,16 @@ for (w=0;w<LEVELS;w++) {
}
while
(
weapons2
[
x
]
==
armor2
[
x
]
||
weapons2
[
x
]
==
magic2
[
x
]
||
armor2
[
x
]
==
magic2
[
x
]);
}
clrscr
();
unlink
(
"TBDOBJ.DAB"
);
#if 0
clrscr();
#endif
unlink
(
"TBDOBJ.DAB"
);
if
((
file
=
open
(
"TBDOBJ.DAB"
,
O_RDWR
|
O_BINARY
|
O_CREAT
,
S_IWRITE
|
S_IREAD
))
==-
1
)
{
printf
(
"Error opening object data file
\r\n
"
);
exit
(
0
);
}
stairs
=
random
(
SQUARE
*
SQUARE
);
do
{
staff
=
random
(
SQUARE
*
SQUARE
);
}
while
(
staff
==
stairs
);
stairs
=
xp_
random
(
SQUARE
*
SQUARE
);
do
{
staff
=
xp_
random
(
SQUARE
*
SQUARE
);
}
while
(
staff
==
stairs
);
for
(
w
=
0
;
w
<
LEVELS
;
w
++
)
{
if
(
w
<
8
)
{
printf
(
"
\r\n\r\n
Weapons Shop #1 in Room #%d
\r\n
"
,
weapons
[
w
]
+
1
);
...
...
This diff is collapsed.
Click to expand it.
xtrn/tbd/reroll.c
+
18
−
10
View file @
72f77f84
#include
<io.h>
#include
<dos.h>
#include
<time.h>
#include
<fcntl.h>
#if 0
#include <dos.h>
#include <io.h>
#include <conio.h>
#endif
#include
<stdio.h>
#include
<stdlib.h>
#include
<string.h>
#include
<sys\stat.h>
#include
<sys/stat.h>
#include
"xsdk.h"
/* Colour definitions */
#include
"objects.h"
#define N (1<<0)
...
...
@@ -48,8 +51,6 @@ void main(int argc, char **argv)
magic
[
10
],
magic2
[
10
],
num_monster
,
num_gold
,
fountain
[
10
],
stairs
,
staff
,
save
=
0
;
long
lastrun
;
struct
time
t
;
struct
date
d
;
if
(
!
stricmp
(
argv
[
1
],
"/?"
))
{
if
(
argc
);
...
...
@@ -62,7 +63,10 @@ void main(int argc, char **argv)
}
if
(
!
stricmp
(
argv
[
1
],
"/SAVE"
))
save
=
1
;
randomize
();
clrscr
();
xp_randomize
();
#if 0
clrscr();
#endif
printf
(
"Creating The Beast's Domain (may take several minutes)!
\r\n\r\n
"
);
if
(
!
save
)
unlink
(
"TBD.USR"
);
else
printf
(
"Saving current user file..."
);
...
...
@@ -85,7 +89,7 @@ for (w=0;w<LEVELS;w++) {
fseek
(
stream
,
w
*
SQUARE
*
SQUARE
,
SEEK_SET
);
for
(
x
=
0
;
x
<
SQUARE
*
SQUARE
;
x
++
)
{
for
(
y
=
0
;
y
<
7
;
y
++
)
{
/* number of possible doors in each room */
if
(
random
(
4
))
{
if
(
xp_
random
(
4
))
{
switch
(
y
)
{
case
0
:
if
(
x
>
SQUARE
-
1
)
door
|=
N
;
...
...
@@ -202,8 +206,8 @@ fclose(stream);
printf
(
"Error opening object data file
\r\n
"
);
exit
(
0
);
}
stairs
=
random
(
SQUARE
*
SQUARE
);
do
{
staff
=
random
(
SQUARE
*
SQUARE
);
}
while
(
staff
==
stairs
);
stairs
=
xp_
random
(
SQUARE
*
SQUARE
);
do
{
staff
=
xp_
random
(
SQUARE
*
SQUARE
);
}
while
(
staff
==
stairs
);
printf
(
"
\r\n\r\n
Stocking The Beast's Domain."
);
for
(
w
=
0
;
w
<
LEVELS
;
w
++
)
{
for
(
x
=
0
;
x
<
SQUARE
*
SQUARE
;
x
++
)
{
...
...
@@ -339,10 +343,14 @@ for (w=0;w<LEVELS;w++) {
/* close(file); */
fclose
(
stream
);
if
((
file
=
open
(
"TBD.MNT"
,
O_WRONLY
|
O_BINARY
|
O_CREAT
,
S_IWRITE
|
S_IREAD
))
!=-
1
)
{
lastrun
=
time
(
NULL
);
#if 0
struct time t;
struct date d;
unixtodos(lastrun,&d,&t);
t.ti_hour=t.ti_min=t.ti_sec=t.ti_hund=0;
lastrun=dostounix(&d,&t);
#endif
lastrun
=
time
(
NULL
);
write
(
file
,
&
lastrun
,
4
);
close
(
file
);
}
printf
(
"
\r\n\r\n
Program Complete! The Beast's Domain is ready to go!"
);
return
;
...
...
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