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
e61df90f
Commit
e61df90f
authored
3 years ago
by
Rob Swindell
Browse files
Options
Downloads
Patches
Plain Diff
A SAUCE library that can read a SAUCE record or character file metadata.
parent
5f2c1052
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
src/sbbs3/sauce.c
+75
-0
75 additions, 0 deletions
src/sbbs3/sauce.c
src/sbbs3/sauce.h
+48
-0
48 additions, 0 deletions
src/sbbs3/sauce.h
with
123 additions
and
0 deletions
src/sbbs3/sauce.c
0 → 100644
+
75
−
0
View file @
e61df90f
/****************************************************************************
* @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
* *
* Copyright Rob Swindell - http://www.synchro.net/copyright.html *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* See the GNU General Public License for more details: gpl.txt or *
* http://www.fsf.org/copyleft/gpl.html *
* *
* For Synchronet coding style and modification guidelines, see *
* http://www.synchro.net/source.html *
* *
* Note: If this box doesn't appear square, then you need to fix your tabs. *
****************************************************************************/
#include
"sauce.h"
#include
"genwrap.h"
#include
"filewrap.h"
// Saves and restores current file position
// Note: Does not support comments
bool
sauce_fread_record
(
FILE
*
fp
,
sauce_record_t
*
record
)
{
off_t
offset
=
ftello
(
fp
);
if
(
offset
==
-
1
)
return
false
;
if
(
fseeko
(
fp
,
-
(
int
)
sizeof
(
*
record
),
SEEK_END
)
!=
0
)
return
false
;
bool
result
=
fread
(
record
,
sizeof
(
*
record
),
1
,
fp
)
==
1
&&
memcmp
(
record
->
id
,
SAUCE_ID
,
SAUCE_LEN_ID
)
==
0
&&
memcmp
(
record
->
ver
,
SAUCE_VERSION
,
SAUCE_LEN_VERSION
)
==
0
;
fseeko
(
fp
,
offset
,
SEEK_SET
);
return
result
;
}
// Get 'type' and/or 'info' from SAUCE record of open file (fp) of DataType 'Character'
bool
sauce_fread_charinfo
(
FILE
*
fp
,
enum
sauce_char_filetype
*
type
,
struct
sauce_charinfo
*
info
)
{
sauce_record_t
record
;
if
(
!
sauce_fread_record
(
fp
,
&
record
))
return
false
;
if
(
record
.
datatype
!=
sauce_datatype_char
)
return
false
;
if
(
type
!=
NULL
)
*
type
=
record
.
filetype
;
if
(
info
!=
NULL
)
{
memset
(
info
,
0
,
sizeof
(
*
info
));
SAFECOPY
(
info
->
title
,
record
.
title
),
truncsp
(
info
->
title
);
SAFECOPY
(
info
->
author
,
record
.
author
),
truncsp
(
info
->
author
);
SAFECOPY
(
info
->
group
,
record
.
group
),
truncsp
(
info
->
group
);
SAFECOPY
(
info
->
date
,
record
.
date
),
truncsp
(
info
->
date
);
info
->
width
=
record
.
tinfo1
;
info
->
height
=
record
.
tinfo2
;
switch
(
record
.
filetype
)
{
case
sauce_char_filetype_ascii
:
case
sauce_char_filetype_ansi
:
case
sauce_char_filetype_ansimation
:
if
(
record
.
tflags
&
sauce_ansiflag_nonblink
)
info
->
ice_color
=
true
;
break
;
}
}
return
true
;
}
This diff is collapsed.
Click to expand it.
src/sbbs3/sauce.h
0 → 100644
+
48
−
0
View file @
e61df90f
/****************************************************************************
* @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
* *
* Copyright Rob Swindell - http://www.synchro.net/copyright.html *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* See the GNU General Public License for more details: gpl.txt or *
* http://www.fsf.org/copyleft/gpl.html *
* *
* For Synchronet coding style and modification guidelines, see *
* http://www.synchro.net/source.html *
* *
* Note: If this box doesn't appear square, then you need to fix your tabs. *
****************************************************************************/
#ifndef SAUCE_H_
#define SAUCE_H_
#include
<stdio.h>
#include
<stdbool.h>
#include
"saucedefs.h"
struct
sauce_charinfo
{
char
title
[
SAUCE_LEN_TITLE
+
1
];
char
author
[
SAUCE_LEN_AUTHOR
+
1
];
char
group
[
SAUCE_LEN_GROUP
+
1
];
char
date
[
SAUCE_LEN_DATE
+
1
];
int
height
;
int
width
;
bool
ice_color
;
};
#ifdef __cplusplus
extern
"C"
{
#endif
// Note: Does not support comments
bool
sauce_fread_record
(
FILE
*
,
sauce_record_t
*
);
bool
sauce_fread_charinfo
(
FILE
*
,
enum
sauce_char_filetype
*
,
struct
sauce_charinfo
*
);
#ifdef __cplusplus
}
#endif
#endif
/* Don't add anything after this line */
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