Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
project:atari_asteroids_autoplay [2013/03/13 06:41] – [Resources Used] smark | project:atari_asteroids_autoplay [2013/03/17 05:31] (current) – [3/16/2013 @ 9:07pm] smark | ||
---|---|---|---|
Line 46: | Line 46: | ||
\\ | \\ | ||
I'm not sure if I'm going to be able to use the vector output as the input into the computer it moves awful fast and I'm not sure serial communications are going to be able to keep up. Another approach I may be able take is to investigate the possibility of watching the input and output to the vector RAM and looking at that for WHERE the objects are. So I'll have to draw them myself. | I'm not sure if I'm going to be able to use the vector output as the input into the computer it moves awful fast and I'm not sure serial communications are going to be able to keep up. Another approach I may be able take is to investigate the possibility of watching the input and output to the vector RAM and looking at that for WHERE the objects are. So I'll have to draw them myself. | ||
+ | |||
+ | ==== 3/13/2013 @ 1:20pm ==== | ||
+ | So I need to catch up from my experimentation lastnight. I discerned a lot. I made images of all of the Atari schematics: | ||
+ | \\ | ||
+ | {{: | ||
+ | \\ | ||
+ | And then got to work. I looked around and made a few posts:\\ | ||
+ | \\ | ||
+ | [[http:// | ||
+ | [[http:// | ||
+ | \\ | ||
+ | A very helpful person on Reddit showed me the world of Logic Analyzers. I found a device online: [[http:// | ||
+ | \\ | ||
+ | I then got to thinking that now I need to determine where I am going to intercept the data. This is where I found an AMAZINGLY detailed page:\\ | ||
+ | \\ | ||
+ | [[http:// | ||
+ | \\ | ||
+ | I have also created a local copy (don't kill me Jed!) simply because I know a lot of these times of sites phase in and out of existence. I would hate for all of this great information to disappear. You can find the local copy {{: | ||
+ | \\ | ||
+ | Basically I believe I need to intercept the outputs of XVLD, YVLD, and BVLD. This is where all of the digital signals are condensed into the X, Y, and On/Off digital stream. From here it goes to the DACs which convert it to output to the Electrohome. I hooked an oscilloscope up to one of the leads of one of the LS134(?) chips which I think is XVLD or YVLD. Using the test pattern (which keeps the picture static) I was able to get a good look at the signal going through there. It looks like how I think a digital signal would look on an analog oscillocope... Lines at 0 and Lines at positive whatever voltage with no connections in between. Almost like _-_-_-_-_ or something. | ||
+ | |||
+ | ==== 3/16/2013 @ 9:07pm ==== | ||
+ | So I haven' | ||
+ | \\ | ||
+ | I'm currently going around and around unable to decide where the best place is to intercept the data. I've found out where I can intercept it but it takes 8+ leads to get anything valuable out of it. XVLD/YVLD turned out to be a dead end as all they do are tell whether or not there is a valid value there. I'm torn in a few different directions...\\ | ||
+ | \\ | ||
+ | Get the outputs from DACX1-10* / DACY1-10* / BLVD. The X/Y ends up being 10 bit values which are fed to the actual DACs (B11/D11). I hooked the logic analyzer up to B11 pins 13 thru 6 (DACY10-3*) where Pin 13 (DACY10*) is the most significant bit (512). It can be visualized as follows: | ||
+ | |||
+ | |||
+ | ^ DACY#* | 10 | 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | | ||
+ | ^ B11 Pin | 13 | 12 | 11 | 10 | 9 | 8 | 7 | 6 | 5 | 4 | | ||
+ | ^ Logic Channel | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | | | | ||
+ | ^ Sample Value | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | | ||
+ | ^ Digit Weight | 512 | 256 | 128 | 64 | 32 | 16 | 8 | 4 | 2 | 1 | | ||
+ | ^ Value | 512 | 0 | 128 | 0 | 64 | 32 | 0 | 16 | 0 | 0 | | ||
+ | ^ Total | 692 |||||||||| | ||
+ | |||
+ | Now whats important to note is that the DAC does not have an internal register so it doesn' | ||
+ | \\ | ||
+ | Anyway, I hooked the logic analyzer up to B11 Pins 13 thru 6, which leaves off pins 5 and 4, which means you lose the last two bits of accuracy. I'm not sure if it is important at this point or not. That means the last two bits are always considered 0. The Saleae Logic software is pretty cool. You end up getting data that looks like this:\\ | ||
+ | \\ | ||
+ | {{: | ||
+ | \\ | ||
+ | Well thats interesting but not really visually useful is it? If you take a vertical slice at any point in that output and assign each channel a 0 or 1 you will get the binary representation just like in the table above. I've compiled the output for each slice (all 336,000 of them) and uploaded them here: {{: | ||
+ | \\ | ||
+ | Now that I have 336,000 height values (Y-Axis 0-1023) I was able to compile this chart with gnuplot:\\ | ||
+ | \\ | ||
+ | {{: | ||
+ | \\ | ||
+ | Well HMM that looks a little bit like the horizontal output for the test pattern! Don't quite see it? Heres a labeled version:\\ | ||
+ | \\ | ||
+ | {{: | ||
+ | \\ | ||
+ | Looking at the math here there is an entire screen refresh approximately every 14ms. Do I think I can write code efficient enough to process several thousand points minimum in less than 14ms? I don't really know how long 14ms is in the programming world, but I think even if the application is multithreaded and I have one thread for each interface (1 for each: Beam On/Off, X Position, Y Position, Game Processing) I don't think I can be quite that efficient. I think now would be a good time to give up on the strategy of processing each frame. Even if I process one out of every 10 frames at 140ms (which I think is probably doable) I'm still not sure I can filter through and pick out a frame easily enough. There would have to be some sort of a pattern recognition that would be insanely hard to write and require a lot of processing time. I think my next step is to look at intercepting the commands as they go to the vector RAM.\\ | ||
+ | \\ | ||
+ | Now that we're moving in that direction... What do I know? The Vector State Machine seems to be a complicated beast. I believe basically the CPU sends a pulse to the Vector State Machine to turn on. It starts its drawing timers and such and immediately starts reading from the vector RAM. It swaps back and forth between reading and executing until the vector RAM is empty, then it turns itself off and waits for the next command. I'll need to decide on one of two approaches: | ||
+ | \\ | ||
+ | - Read from the CPU as it goes into the RAM and just assume that the commands are written to the screen quickly | ||
+ | - Watch that " | ||
+ | \\ | ||
+ | Well I'm going to go investigate how to look at the RAM. I don't know how easy this will be without the Asteroids game code.... | ||
===== Major Challenges ===== | ===== Major Challenges ===== | ||
Line 51: | Line 112: | ||
===== Resources Used ===== | ===== Resources Used ===== | ||
[[http:// | [[http:// | ||
- | {{: | + | {{: |
{{: | {{: | ||
{{: | {{: | ||
- | [[http:// | ||
{{: | {{: | ||
- | {{: | + | {{: |
+ | [[http:// | ||
+ | [[http:// |