Search found 656 matches

by jedie
Thu Nov 20, 2014 12:46 pm
Forum: Dragon General
Topic: dynamic AUTOLOAD.DWL
Replies: 1
Views: 2346

Re: dynamic AUTOLOAD.DWL

First working version of a dynamic AUTOLOAD.DWL is ready, see: http://archive.worldofdragon.org/phpBB3/viewtopic.php?f=8&t=4946&p=12221#p12221 Currently it looks like this: 10 CLS 20 PRINT" *** DYNAMIC MENU *** 12:41:26" 30 PRINT"/HOME/JENS/DWLOAD-FILES" 40 PRINT"0 - A.BAS" 50 PRINT"1 - A.DWL" 60 PR...
by jedie
Thu Nov 20, 2014 12:44 pm
Forum: Hints and Tips
Topic: Drivewire... -> DWLOAD Server in Python
Replies: 24
Views: 44351

Re: Drivewire... -> DWLOAD Server in Python

jedie wrote:Next step: dynamic "AUTOLOAD.DWL", see: https://github.com/6809/DwLoadServer#todo
It works! -> https://github.com/6809/DwLoadServer/co ... 207c2211db

But the generated listing must be enhanced, see: viewtopic.php?f=5&t=4977
by jedie
Thu Nov 20, 2014 9:34 am
Forum: Dragon General
Topic: dynamic AUTOLOAD.DWL
Replies: 1
Views: 2346

dynamic AUTOLOAD.DWL

Here is the origin AUTOLOAD.DWL from tormod (from dwload-demo-files.tar.xz.zip -> http://archive.worldofdragon.org/phpBB3/viewtopic.php?f=5&t=4964#p12026 ) 5 'AAAA 7 PRINT 10 PRINT"1 PLASMA " 20 PRINT"2 STUDD" 30 PRINT"3 FLAGON BIRD" 40 PRINT"4 DONKEY KING" 50 PRINT"5 ZAXXON" 60 PRINT"6 ELCHANCE" 80...
by jedie
Wed Nov 19, 2014 1:46 pm
Forum: Hints and Tips
Topic: Drivewire... -> DWLOAD Server in Python
Replies: 24
Views: 44351

Re: Drivewire... -> DWLOAD Server in Python

I have released DWLOAD-Server v0.3.0 Now it works, the "on-the-fly converting "ASCII BASIC listing" <-> "Dragon DOS Binary" for read and write! e.g.: DLOAD"SAVE""HELLO.BAS" will create two files: "HELLO.DWL" (raw data) and "HELLO.BAS" (ASCII listing) :D to load, just run: DLOAD"HELLO.BAS" This will ...
by jedie
Wed Nov 19, 2014 9:37 am
Forum: Dragon General
Topic: DWLOAD - DriveWire for everybody
Replies: 62
Views: 59178

Re: DWLOAD - DriveWire for everybody

(jedie, maybe we can move the discussion of your python server to another thread, because the problems you are having are not relevant to "normal" users using DriveWire4 and might add confusion here. I am sure it will be a useful alternative once it works though.) No problem. I would like to discus...
by jedie
Wed Nov 19, 2014 8:34 am
Forum: For Sale
Topic: Dragon 64 from spain...
Replies: 0
Views: 4089

Dragon 64 from spain...

55€ from spain: http://www.ebay.de/itm/Dragon-64-/261667589998
Shipping to germany takes 50€, but maybe someone in spain would like to buy and must pay less shipping costs?
by jedie
Mon Nov 17, 2014 7:07 pm
Forum: Hints and Tips
Topic: Drivewire... -> DWLOAD Server in Python
Replies: 24
Views: 44351

Re: Drivewire... -> DWLOAD Server in Python

I'm work on read/save ASCII listing by converting them on-the-fly... Save works good. Read is buggy. -> https://github.com/6809/DwLoadServer/compare/ascii_save The interesting code is here: * read: https://github.com/6809/DwLoadServer/blob/ascii_save/dwload_server/hooks/read_ascii.py#L24-L62 * save:...
by jedie
Mon Nov 17, 2014 5:01 pm
Forum: Dragon General
Topic: DWLOAD - DriveWire for everybody
Replies: 62
Views: 59178

Re: DWLOAD - DriveWire for everybody

Seems to work: https://github.com/6809/DwLoadServer/commit/ae4cfad8a469d2f0013fd38b3e732850bed69a0d A DLOAD"RESAVE""FOO.DWL" will saves the normal "FOO.DWL" in Dragon DOS Binary Format. I check if content.endswith(b"\x00\x00\x00") after every block. If it's true: a server hook saves "FOO.DWL.BAS" in...
by jedie
Mon Nov 17, 2014 2:55 pm
Forum: Dragon General
Topic: DWLOAD - DriveWire for everybody
Replies: 62
Views: 59178

Re: DWLOAD - DriveWire for everybody

v0.2.0 of my DWLOAD-Server is out: http://archive.worldofdragon.org/phpBB3/viewtopic.php?f=8&t=4946&p=12198#p12198 Now i want to implement the real interesting things: * Dynamic AUTOLOAD.DWL * Load/Save BASIC listings in ASCII For the second point i have a question: On the Client i using RESAVE. On ...
by jedie
Mon Nov 17, 2014 2:26 pm
Forum: Hints and Tips
Topic: Drivewire... -> DWLOAD Server in Python
Replies: 24
Views: 44351

Re: Drivewire... -> DWLOAD Server in Python

Release v0.2.0 is out: * Runable with becker and serial port (and update CLI for it) * enhanced startup batch files for windows and shell script for linux HowTo for Windows: https://github.com/6809/DwLoadServer#windows HowTo for Linux: https://github.com/6809/DwLoadServer#linux CLI Looks like this: ...