Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
alemorf committed Dec 5, 2024
1 parent 491c1ca commit c39f440
Show file tree
Hide file tree
Showing 8 changed files with 1,707 additions and 0 deletions.
168 changes: 168 additions & 0 deletions Ocean_240/utils/decode_ocean_floppy/.clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,168 @@
---
Language: Cpp
# BasedOnStyle: Google
AccessModifierOffset: -4
AlignAfterOpenBracket: Align
AlignConsecutiveMacros: false
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: false
AlignEscapedNewlines: Left
AlignOperands: true
AlignTrailingComments: true
AllowAllArgumentsOnNextLine: true
AllowAllConstructorInitializersOnNextLine: true
AllowAllParametersOfDeclarationOnNextLine: true
AllowShortBlocksOnASingleLine: Never
AllowShortCaseLabelsOnASingleLine: false
AllowShortFunctionsOnASingleLine: None
AllowShortLambdasOnASingleLine: All
AllowShortIfStatementsOnASingleLine: Never
AllowShortLoopsOnASingleLine: false
AlwaysBreakAfterDefinitionReturnType: None
AlwaysBreakAfterReturnType: None
AlwaysBreakBeforeMultilineStrings: true
AlwaysBreakTemplateDeclarations: Yes
BinPackArguments: true
BinPackParameters: true
BraceWrapping:
AfterCaseLabel: false
AfterClass: false
AfterControlStatement: false
AfterEnum: false
AfterFunction: false
AfterNamespace: false
AfterObjCDeclaration: false
AfterStruct: false
AfterUnion: false
AfterExternBlock: false
BeforeCatch: false
BeforeElse: false
IndentBraces: false
SplitEmptyFunction: true
SplitEmptyRecord: true
SplitEmptyNamespace: true
BreakBeforeBinaryOperators: None
BreakBeforeBraces: Attach
BreakBeforeInheritanceComma: false
BreakInheritanceList: BeforeColon
BreakBeforeTernaryOperators: true
BreakConstructorInitializersBeforeComma: false
BreakConstructorInitializers: BeforeColon
BreakAfterJavaFieldAnnotations: false
BreakStringLiterals: true
ColumnLimit: 120
CommentPragmas: '^ IWYU pragma:'
CompactNamespaces: false
ConstructorInitializerAllOnOneLineOrOnePerLine: true
ConstructorInitializerIndentWidth: 4
ContinuationIndentWidth: 4
Cpp11BracedListStyle: true
DeriveLineEnding: true
DerivePointerAlignment: false
DisableFormat: false
ExperimentalAutoDetectBinPacking: false
FixNamespaceComments: true
ForEachMacros:
- foreach
- Q_FOREACH
- BOOST_FOREACH
IncludeBlocks: Regroup
IncludeCategories:
- Regex: '^<ext/.*\.h>'
Priority: 2
SortPriority: 0
- Regex: '^<.*\.h>'
Priority: 1
SortPriority: 0
- Regex: '^<.*'
Priority: 2
SortPriority: 0
- Regex: '.*'
Priority: 3
SortPriority: 0
IncludeIsMainRegex: '([-_](test|unittest))?$'
IncludeIsMainSourceRegex: ''
IndentCaseLabels: true
IndentGotoLabels: true
IndentPPDirectives: None
IndentWidth: 4
IndentWrappedFunctionNames: false
JavaScriptQuotes: Leave
JavaScriptWrapImports: true
KeepEmptyLinesAtTheStartOfBlocks: false
MacroBlockBegin: ''
MacroBlockEnd: ''
MaxEmptyLinesToKeep: 1
NamespaceIndentation: None
ObjCBinPackProtocolList: Never
ObjCBlockIndentWidth: 2
ObjCSpaceAfterProperty: false
ObjCSpaceBeforeProtocolList: true
PenaltyBreakAssignment: 2
PenaltyBreakBeforeFirstCallParameter: 1
PenaltyBreakComment: 300
PenaltyBreakFirstLessLess: 120
PenaltyBreakString: 1000
PenaltyBreakTemplateDeclaration: 10
PenaltyExcessCharacter: 1000000
PenaltyReturnTypeOnItsOwnLine: 200
PointerAlignment: Right
RawStringFormats:
- Language: Cpp
Delimiters:
- cc
- CC
- cpp
- Cpp
- CPP
- 'c++'
- 'C++'
CanonicalDelimiter: ''
BasedOnStyle: google
- Language: TextProto
Delimiters:
- pb
- PB
- proto
- PROTO
EnclosingFunctions:
- EqualsProto
- EquivToProto
- PARSE_PARTIAL_TEXT_PROTO
- PARSE_TEST_PROTO
- PARSE_TEXT_PROTO
- ParseTextOrDie
- ParseTextProtoOrDie
CanonicalDelimiter: ''
BasedOnStyle: google
ReflowComments: true
SortIncludes: false
SortUsingDeclarations: true
SpaceAfterCStyleCast: false
SpaceAfterLogicalNot: false
SpaceAfterTemplateKeyword: true
SpaceBeforeAssignmentOperators: true
SpaceBeforeCpp11BracedList: false
SpaceBeforeCtorInitializerColon: true
SpaceBeforeInheritanceColon: true
SpaceBeforeParens: ControlStatements
SpaceBeforeRangeBasedForLoopColon: true
SpaceInEmptyBlock: false
SpaceInEmptyParentheses: false
SpacesBeforeTrailingComments: 2
SpacesInAngles: false
SpacesInConditionalStatement: false
SpacesInContainerLiterals: true
SpacesInCStyleCastParentheses: false
SpacesInParentheses: false
SpacesInSquareBrackets: false
SpaceBeforeSquareBrackets: false
Standard: Auto
StatementMacros:
- Q_UNUSED
- QT_REQUIRE_VERSION
TabWidth: 4
UseCRLF: false
UseTab: Never
...

15 changes: 15 additions & 0 deletions Ocean_240/utils/decode_ocean_floppy/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
all: decode_ocean_floppy decode_ocean_floppy.exe

.PHONY: clean
clean:

.PHONY: format
format:
clang-format -i decode_ocean_floppy.c

decode_ocean_floppy.exe: decode_ocean_floppy.c
x86_64-w64-mingw32-g++ -O2 -static --std=c++17 -o$@ $<

decode_ocean_floppy: decode_ocean_floppy.c
g++ -g -static --std=c++17 -o$@ $<

Binary file not shown.
82 changes: 82 additions & 0 deletions Ocean_240/utils/decode_ocean_floppy/decode_ocean_floppy.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
/* Convert Ocean 240 floppy images to normal format
* Copyright (c) 2024 Aleksey Morozov [email protected] [email protected]
*
* 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, version 3.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdint.h>
#include <errno.h>

static const unsigned interleave[] = {1, 8, 6, 4, 2, 9, 7, 5, 3};

int main(int argc, char **argv) {
if (argc != 3) {
fprintf(stderr,
"Convert Ocean 240 floppy images to normal format\n"
"Usage: %s to.imd from.img\n",
argv[0]);
return 1;
}

int fd = open(argv[2], O_RDONLY);
if (fd == -1) {
fprintf(stderr, "Can't open file %s, errno %i\n", argv[2], errno);
return 1;
}

int fd2 = open(argv[1], O_WRONLY | O_CREAT | O_TRUNC, 0644);
if (fd2 == -1) {
fprintf(stderr, "Can't create file %s, errno %i\n", argv[1], errno);
close(fd);
return 1;
}

for (unsigned side = 0; side < 2; side++) {
for (unsigned track = 0; track < 80; track++) {
for (unsigned sector = 0; sector < 9; sector++) {
const unsigned offset = (track * 18 + side * 9 + interleave[sector] - 1) * 512;
if (lseek(fd, offset, SEEK_SET) != offset) {
fprintf(stderr, "Can't seek file %s, errno %i\n", argv[2], errno);
close(fd);
close(fd2);
return 1;
}

char buf[512];
if (read(fd, buf, 512) != 512) {
fprintf(stderr, "Can't read file %s, errno %i\n", argv[2], errno);
close(fd);
close(fd2);
return 1;
}

if (write(fd2, buf, 512) != 512) {
fprintf(stderr, "Can't write file %s, errno %i\n", argv[1], errno);
close(fd);
close(fd2);
return 1;
}
}
}
}

printf("Done\n");

close(fd);
close(fd2);

return 0;
}
Binary file not shown.
Binary file added Ocean_240/utils/decode_ocean_floppy/disketa.img
Binary file not shown.
Binary file added Ocean_240/utils/decode_ocean_floppy/disketa.okd
Binary file not shown.
Loading

0 comments on commit c39f440

Please sign in to comment.