Jump to content
Jagware

Orion_

Level1
  • Content count

    1,073
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Orion_


  1. I did, but the email on his website doesn't work :/

     

    Also, I'm trying to get Sfx working but it seems I cannot.

    All I ear is a strange sound but not my Sfx.

     

    My SfxBank table is this:
    .long
    SfxBank:
    dc.l	SfxDiam,SfxDiamE,0,0,64,16000
    dc.l	SfxMenu,SfxMenuE,0,0,64,16000
    
    Before starting DSP I do this:
    move.l	#SfxBank,U235SE_ptr_sample_bank
    
    To Play a Sfx I have made this little routine:
    moveq	#1,d0	; sample
    moveq	#4,d1	; channel (after mod voices)
    bsr	U235_PlaySfx
    
    
    U235_PlaySfx:	; d0 = sample N, d1 = channel
    
    lea	U235_Playlist,a0
    
    ;	move.l	#SfxBank,d2		; This seems not to work either
    ;	and.b	#$f0,d2
    ;	or.b	#$b,d2
    ;	move.l	d2,(a0)+
    
    moveq	#2,d2	; Play
    lsl.w	#8,d0
    lsl.w	#4,d1
    or.w	d0,d2	; Sample N
    or.w	d1,d2	; Channel
    
    move.l	d2,(a0)+
    move.l	#0,(a0)
    
    move.l	#U235_Playlist,U235SE_sfxplaylist_ptr
    
    rts
    
    .bss
    
    .long
    U235_Playlist:
    ds.l	8
    

     

    any clue to u235 engine users ?


  2. I was checking the DiamJag source, the initial version used the old sinister player, but it had bugs after playing too much sfx.

    Around 2008 I replaced It by the Removers's MOD Player (from rmvlib) and it was working quite well.

     

    Now I was thinking of using U-235 sound engine and I was wondering what would be the advantage over the removers's one.

    did someone test the 2 engines ?

     


  3. I won a copy of the CD version of this game at Silly Venture 2012 (for my 2nd place of the game compo, which I entered Elansar jaguar demo)

    The packaging is gorgeous !

    I have to repair my jagcd to try this game as quick as possible ! :)

     

     


  4. very nice conservation project !

     

    but maybe giving all the version of a file is a bit too much ? (especially when cdi takes that much space)

    As Jiffi is here to do the job, maybe keep the original file and let the user use jiffi to convert the file in desired format. (I doubt for example that a lots of people will use the jagserver files)

     

    Because it begins to get a bit messy in the folder :/

     


  5. Here is a little tool for BJL users that are tired of waiting long transfer time !

    It will pack your BJL file using ARJ Mode 7 compression (very efficient packer !) and add a little header program that will automatically unpack your program on Jaguar and start it as usual.

     

    Simply drag/drop your bjl file on the "bjlpak.bat" file !

     

    (There is a version without the "Depacking..." logo, simply use the "bjlpak - nologo.bat" file instead)

     

    Full sources included :)

     

    ARJ Depacking routine by Mr Ni! of the TOS-crew.

     

    Thanks to ggn/reboot for making me aware of the arj depack routine and for the original files and tools.

     

    Enjoy: http://onorisoft.free.fr/jag/bjlpak.zip

     

×