Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Iambian

Pages: 1 ... 5 6 [7] 8 9 ... 52
91
ASM / Re: How to stop interrupts being disabled after exiting app?
« on: January 08, 2014, 10:17:06 pm »
You probably need to set interrupt mode to 1, THEN enable interrupts again, not the other way around.

You also need to disable the crystal timers. The OS interrupts requires one of them, I think. Also, did you reset the normal interrupts?

NOTE: This post was edited too many times shortly after the initial post. I really need to collect my thoughts better.

92
TI Z80 / Re: YABAV(A)
« on: January 07, 2014, 04:22:26 pm »
A loop of known clock cycle length during the wait period between interrupts. Cycles used in this loop is compared against the total number of cycles during program execution. I would have this loop update a 32 bit counter, which is then later read out after the end of the program execution via debugger. Your math would then be:

To determine CPU percentage idle:

(NumberOfTimesLooped*ClockCycleCountOfLoop)/(15,000,000*NumberOfSeconds)

This will give you a good enough estimation, since any inaccuracies, if done right, are negligible (less than 0.1%). This is also assuming you're running the calc at 15MHz.

93
ASM / Re: Anyone got a copy of "APACK"?
« on: December 28, 2013, 06:37:08 pm »
Since I couldn't find it anywhere else on the internet, might as well provide a copy of APACK for the Ti-83 (Plus) here. (Attached)

I think it was ported by Dwedit.

94
TI Z80 / Re: YABAV(A)
« on: December 28, 2013, 04:45:33 pm »
Changes:

* Size reduction (now 737,280 bytes on-calc)
* Video playback perfect
* Aspect ratio preserved. Video cropped on left and right to fit.

What happened:

Implemented a page filling algorithm that actually tries to fill in the gaps between pages with data by sorting through the chunks to see what will still fit, starting from the largest available piece working its way down the list until none of the available blocks will fit any more. Saved 48-64KB.

Changed compression/decompression scheme from puCrunch to APACK. This fixed the video playback corruption issue, which doesn't inspire much confidence in what I had before. APACK also seems to perform better than puCrunch in this application. Saved another ~48-64KB.

In an attempt to fix the playback problem, I performed much of the video/image processing in FFMPEG instead of doing the ridiculously slow batch file conversions in Irfanview. Although I spent more time learning how to actually use FFMPEG than it did if I had actually went through with the batch conversion, I learned how to use it better, which makes me happier. Unfortunately, the destination folder went up dramatically, as I was unable to figure out how to change color depth of the output .png files. But, I was able to perform resizing (while preserving the aspect ratio), cropping the video, and (as was done before) splitting the file into its individual frames as PNG's.

Also, the Java script had to be changed to handle PNG files that had a color depth of more than 1bpp. If it had a color depth of 1bpp and you knew the image was 96x64, you could create an ImageData object (from the SWT library), then do something like "myPictureObject.data" to get a data stream that's binary-compatible with the calc. Just put that data into a source file and LDIR it to a screen buffer. But... since I couldn't do that anymore, I had to change it so that it actually scans through the file and creates the bitmap. Ah well.

When I changed from puCrunch to APACK, the application's performance characteristics didn't change all that much. If anything, APACK is a slight bit faster than puCrunch, but I'll have to test using an actual stopwatch later on instead of counting it out.

The audio interrupt is running at 24KHz. The app has 23-29% free CPU clocks left.

I can no longer continue this project until I have finished (or at least, completed basic functionality) my on-calc music tracker project. So unless there are other suggestions (I've already tried KermM's mt3 converter, with no luck), I'm putting this on hold for a while.

Or... if you happen to have the music for Bad Apple playable via MobileTunes3, this will plug right into the app, albeit at the wrong octave (due to the app running at 24Khz vs the required ~62KHz)

EDIT: Whoops. Forgot to upload the video. I'll do that now.

95
ASM / Anyone got a copy of "APACK"?
« on: December 28, 2013, 03:13:03 pm »
Anyone here have a copy of apack? It's some sort of compression scheme and someone ported it to the 83+, with a PC command line util to do the compression.

I lost my copy and Google is being very unhelpful. The only references that seem to get me anywhere lead me to dead links.

EDIT: Nevermind. Didn't search hard enough. A copy was on one of the CD's that I had lying around

96
TI Z80 / Re: YABAV(A)
« on: December 25, 2013, 08:59:56 pm »
Second attempt. This one took a much longer amount of time to accomplish, as there were many problems both with the Java side of things and with SPASM, not to mention the woes of trying to get my 4 channel audio interrupt to work with the renderer and keep the decompressor running in the background at all times.

I still use pucrunch, but this time around, I decompress to ~16KB blocks and have the renderer scan across it.

After some manual tinkering with the data block locations, I've got the app down to 835,584 bytes total. There's still a disgusting amount of space being wasted between pages and I'm sure I could reduce the size by another 16-64KB if I coded the Java side of things to actually sort and try to fill the gaps.

Anyway.

Even tho there is no (real) music, the 4 channel audio interrupt *is* running in this screenshot at a very low frequency hum (as is the setting if not initialized). The video itself is much smoother on-calc, despite the fact that there is frame-skipping logic if the video can't render at ~30FPS.

-------
EDIT: Music *can* play. I just don't have a track to play with the thing yet.

Also, there's still an unidentified encoding problem. I don't know if it's with pucrunch or if it's the Java code unreliably reading in the .png files. Or if it's a problem with the frameskip logic.

EDIT3: Maybe I should try apack next, just for the fun of it?

97
TI Z80 / YABAV(A)
« on: December 22, 2013, 01:31:13 pm »
Yet Another "Bad Apple" Video (attempt).

This was a quick attempt to see what I can do with the stuff I've already made. This attempt recycled both sides of the Athena Installer/Packager project to process the video via modified pucrunch. Much of the time spent was trying to get the youtube video into a format I could work with (ffmpeg and irfanview were used).

Since Athena was re-used, the executable is in the form of a main executable followed by loads of files. Here's some numbers:

Total number of frames: 6585
Memory used if not compressed: 4.8 MB (5057280 bytes plus headers for required number of files)
Memory after passing it through Athena: 1.03MB (1088847 bytes including headers for 81 .8xp files)
Executable size: 944 bytes (including .8xp header)
New lines of z80 code: ~100
New lines of Java code: Less than 50
Average framerate at 15MHz: 25FPS

If you've read the last part, you'll know that the decompressor ran a bit too slow for real-time video playback. This *can* be fixed and made better, but the point of this was to see what I could do in a single day. I do plan on working on this a bit more.

Known problems: Playback is too slow, unknown corruption in the encoding (can't find)

Warn: Attachment below is a 3.5MB video of the results so far.

98
TI Z80 / Re: Bad Apple SE
« on: December 20, 2013, 09:43:12 pm »
Tested the version linked to me on the IRC chan on hardware (TI-84 Plus SE).  The timing fix works, and the interlacing is less noticeable on the actual hardware. It's still obvious when the scene changes very fast, tho.

99
ASM / Re: I need to load page x of an app without calling code.
« on: December 17, 2013, 08:37:03 pm »
That's because pages on the 83/84+(SE) calcs are stored in reverse order. If the base page was $40, the next page would be $3F, and the one after that would be $3E

I recall that the TI-73 stores pages in the order you'd expect them to, tho.

100
ASM / Re: I need to load page x of an app without calling code.
« on: December 17, 2013, 01:48:03 pm »
Sample. The only real observed difference is the fact that the defpages are not in the same file as the first defpage, and that the closing quotes in the initial defpage is not closed.
Code: [Select]
#include "pc/redefs.inc"
#define main_build
#include "pc/defs.inc"
#include "pc/app.inc"
#define getpagenum(label) label>>16
#define cpcall(label) call XPC \ .dw label \ .db getpagenum(label)
#define cpjump(label) call XPJ \ .db getpagenum(label) \ .dw label
#define loadslot(xx,lbl) call LSL \ .db xx*3 \ .dw lbl \ .db getpagenum(lbl)
#DEFINE CLSB(xx) $000000FF&(xx)
#DEFINE CMSB(xx) ($0000FF00&xx)>>8
#DEFINE MENU_SCREEN_WIDTH 12
;-----------------------------------------------------------------------------
;DEFINE AREA FOR DEBUGGING PURPOSES. UNCOMMENT TO ALLOW FOR EASIER WORK.

;Bypasses menu on app startup into game mode. To change the parameters of
;what you're starting up with, check in p0\_0.z80 and search for the define.
#DEFINE CADAN_MENUBYPASS

;If you're using CADAN_MENUBYPASS, uncomment one of these defines below to
;SELECT YOUR CHARACTER automatically.

;#DEFINE CADAN_MENUBYPASS_CHARSEL %00000001 ;DevBlock
#DEFINE CADAN_MENUBYPASS_CHARSEL %00000010 ;Iambian
;#DEFINE CADAN_MENUBYPASS_CHARSEL %00000100 ;Netham45 (spork)
;#DEFINE CADAN_MENUBYPASS_CHARSEL %00001000 ;Placeholder
;#DEFINE CADAN_MENUBYPASS_CHARSEL %00010000 ;Placeholder
;#DEFINE CADAN_MENUBYPASS_CHARSEL %00100000 ;Nanami
;#DEFINE CADAN_MENUBYPASS_CHARSEL %01000000 ;Netham45 (lobster)
;#DEFINE CADAN_MENUBYPASS_CHARSEL %10000000 ;Placeholder

;Automatically sets hexadecimal mode in-game. Also, changes output to the
;scoreboard from curscore to the 4 bytes in scoredebug. Yus.
;#DEFINE CADAN_AUTOSCOREDEBUG

;-----------------------------------------------------------------------------

;=============================================================================
defpage(0, "CaDan v2") ;======================================================
;
;This project is dedicated to my beloved Etri, the Catgirl o' Nine Tails, who
;understood me and my desire to extract Red Kool-Aid from all of humanity.
;
;Coding of the Calculator Danmaku Project was done as a collaborative effort
;
;Primary coding and planning: Rodger Weisman (Iambian Zenith)
;Code and script build, test: Timothy (Geekboy)
;Big time code optimization : "calc84maniac"
;
.echo "------------------"
#include "p0/_0.z80"
#include "p0/xpage.z80"    ;RAM routines held here
#include "p0/lib_menu.z80" ;Menu library routines and their supporters
#include "p0/lib_txtr.z80" ;text display library routines
#include "p0/lib_grfx.z80" ;menu graphics library
#include "p0/lib_dcmp.z80" ;decompression library
#include "p0/lib_scor.z80" ;score handler library
MenuGraphicsData:          ;menu graphical data. Read tables from this address
#include "gfxdat/build/imenu.z80"
MenuExecData:
#include "gfxdat/build/smenu.z80"
MenuTextData:
#include "gfxdat/build/tmenu.z80"

.echo "Space before 7000: ",$7000-$," out of 14366"
.block $7800-($&$0000FFFF) ;Making room for page-aligned font tables
#include "p0/dat_font.z80" ;font, kerning, and ASCII translation data
#include "p0/dat/dat_minm.z80" ;danmaku mode mini menu. No more than 213 bytes
.echo "------------------"

;=============================================================================
defpage(1)  ;=================================================================
.echo "------------------"
#include "p1/LUTables.z80" ;must not exceed 256 bytes. Page-aligned lookup table
.block $4100-($&$0000FFFF)
#include "p1/_1.z80"        ;interrupt, initialization and tasking routines
#include "p1/lib_reso.z80"  ;Resource table handlers
#include "p1/lib_scrn.z80"  ;All LCD driving routines found here
#include "p1/lib_shot.z80"  ;Bullet system
#include "p1/lib_psht.z80"  ;Player bullet system. All references in here.
#include "p1/lib_scpt.z80"  ;Script system. Contains "dat_scpt.z80"
;.block $7800-($&$0000FFFF)  ;### DEBUG SO SCRIPTSYS EDITS DO NOT KILL SCRIPT
#include "p1/lib_sprt.z80"  ;Sprite library
#include "p1/lib_enmy.z80"  ;Enemy table handlers and initializers
#include "p1/tst_stgs.z80"  ;TEST STAGES. DIRECTLY CALLED AND EXECUTED
;#include "p1/lib_sldr.z80"  ;Loading system. Supports script suspension
.echo "------------------"
;=============================================================================
defpage(2)  ;=================================================================
#include "p2/_2.z80"
;=============================================================================
validate()  ;=================================================================

101
CaDan SHMUP / Re: Yet another shooter
« on: December 13, 2013, 10:33:10 am »
geekboy got me to work on this thing once again. It's still a monster that needs much more TLC than it's been given recently.

Because CaDan has been on such a long hiatus, I've completely forgotten what I've been working on and it's quite a nice thing to rummage through stacks of notebook paper trying to figure out what the last thing was.

As it turns out, it was a replacement garbage collector for the resource handler routines (went with that instead of script-managed memory) and a really fancy set of routines for scripted enemy movement. Absolutely none of which are in the codebase yet. But judging from the number of "Quality Assurance Dragons" drawn on the pages, I may have gone off the deep end more than once writing it.

Note: Geekboy wants a picture of said Quality Assurance Dragon(s)
EDIT: QAD attached.

102
TI Z80 / Re: 4-Channel Interrupt-Based Audio (83+SE;84+;84+SE)
« on: July 25, 2013, 11:47:50 pm »
[...]
How will sharps/flats be represented? It seems to me that it would be best to use an extra character to specify when note values are hexadecimal, making hexadecimal values always three characters, and then using the third character in letter notation to display sharp/flat when necessary.

Also, notes with octave values attached traditionally have the octave following the note letter and sharp/flat symbol. What do you think about representing notes more like this, then:

Code: [Select]
CH1 CH2 CH3 CH4 TIME
A♯0 $1F G♭3 C3  /16
That looks like a great idea.

TBH, the reason I didn't talk about sharps and flats was because I was too lazy to look up how to type them. I have those characters ready to be placed into the font tables.

The way you have it set up, tho, looks a bit better than what I had on paper (oct, letter, sharp/flat). I'll probably do it that way

103
TI Z80 / Re: 4-Channel Interrupt-Based Audio (83+SE;84+;84+SE)
« on: July 25, 2013, 03:11:03 pm »
A tracker would definitively be nice, but since our crowd is mainly oriented towards graphical music creation interfaces, future feature additions that would be nice would be note presets that you can select from a list (Do re mi fa sol la ti do) after choosing the octave, then when selecting the note, it would automatically translate it to its hex equivalent.
Right off the bat, I'm not going to be showing people a hex view. To me, it's not productive at all and discourages actual use. If you want to see hex, you can anyway by switching the view mode, but what you will see instead of hex is a pitch notation A-G, prefixed by which octave it is. For example:
Code: [Select]
CH1 CH2 CH3 CH4 TIME
0A. 1A. 3G. 3C. /16
The time code only really makes sense if you've defined a tempo earlier. In the example above, I defined a sixteenth note. The dots in the pitch notation is to show that it is not showing a hex value, which *can* happen if the hex underlying the pitch value doesn't correspond to anything the program knows. As for timing, it'll make a best guess if the time value is off, tho display "???" if it simply can't figure it out.

The actual interface is based off a menu on the right side, which is accessed via the CLEAR ^ / * - + ENTER buttons (whole right column of buttons) while the arrow buttons control the data selection cursor. This side menu changes depending on what you're doing, too.

The menu options themselves are 3 letters long, which don't give you much clue by themselves what they do, but pushing the Y= key (F1) will briefly cover the edit pane to show you a brief description of what each option does.

It shouldn't be much longer now before I have a simple version of what I'm talking about ready to show.

104
Miscellaneous / Re: Post your desktop
« on: July 24, 2013, 12:32:47 am »
My desktop has changed a fair bit, but the general structure of icons on the desktop hasn't in the past ... so many years.

EDIT: Yes, I have a "Turn off Monitor" button. Very useful in the case of laptops, where most of them don't have a power button to begin with (most just sleeps the computer, which defeats the purpose of just turning off the monitor)

EDIT2: The quote is supposed to be motivational. If I can see it, I'm not doing enough.

105
TI Z80 / Re: 4-Channel Interrupt-Based Audio (83+SE;84+;84+SE)
« on: July 24, 2013, 12:27:19 am »
It's more like the zx spectrum with its bleeper routines. Wil you add pulsewidth modulation too (using envelopes or LFO's) so you can create some complex compositions?
The current audio driver does not support that and cannot support that in any way. Sorry.
--------------------------------------------
And now, a crosspost from Cemetech:

I've started working on a full-featured tracker. When I dove into that project, I thought it would be all nice and easy, given that I had written out plans for the actual tracking part, but then reality hit me.

File selection would be easy, but creating a new project file? That's what I spent the last two days working on and it's still not fully complete. The menu that allows the user to type it in, however, has been (functionally) completed. So many thing went wrong in it. If you look at the screenshot below, you'll understand why it took so long.

Screenshot: http://imgur.com/sbWFQVi

The code is a huge mess, as well. I'll clean it up after I apply brain bleach and let it simmer so I remember absolutely none of it.

Next in line: Input verification and file creation.
-----------------------------
Also, I talked about adding background music for the tracker's title screen. Good idea? Bad idea? If it's included, there will be a (hidden) option of opening that track for editing.

Pages: 1 ... 5 6 [7] 8 9 ... 52