| Total Entries: 5 | 
| satans Entry: 5
 04/13/2003
 01:06 PM
 
 | Another new release 
 V0.8.0a ADP Paker
 - Now includes 4 dif compression methods
 BEST,NORMAL,FAST,STORE
 All fully extracted and decompressed under
 blitz.
 
 For those who wonder how the paker will be used under blitz here is the code of the demo you can download. (well part of the code)
 
 
 Graphics3D 800,600,16,2
 SetBuffer BackBuffer()
 ADPINIT("compressed.pak")
 sndPlayerDie=ADPLoad3dSound("TMPfinal speed.mp3")
 PlaySound sndPlayerDie
 skytex1=ADPLoadTexture("sky1.jpg")
 skytex2=ADPLoadtexture("sky1_farmland.bmp")
 skytex3=ADPLoadtexture("sky1bluehills-a.bmp")
 modeltex=ADPLoadtexture("dragon.bmp")
 model=ADPLoadmd2("tris.md2")
 
 ScaleEntity model,0.02,0.02,0.02
 RotateEntity model,0,180,0
 PositionEntity model,0,-2,4
 EntityTexture model,modeltex
 .......
 
 
 You can see its damn easy no worry about the compression method used when you pak the files juste load the stuff as you would do it under blitz adding ADP before the load function.
 
 I hope to get a bit more comments about you cauz i am starting to think that this prog is not interesting a lot of people :(
 
 
 YOur friend SatanS
 
 | 
| satans Entry: 4
 04/12/2003
 04:09 AM
 
 | Today its the first full project release for the beta testers. I am still looking for some people to beta test the proggy :) 
 If you want to be a beta tester just drop a word on the project site.
 
 www.cemporia.org
 
 | 
| satans Entry: 3
 04/09/2003
 10:08 AM
 
 | Today i ve been optimising and finalizing the decompression fuctions under blitzbasic. 
 I have posted on my web site the complete results obtained.
 
 As far the 2 decompression algos take both together the same time taken by the program to read the file data into a bank.
 
 
 if you want to check the results
 
 www.cemporia.org
 
 The FIle manager as been a bit revamped and is close to a stable version so expect a beta release soon.
 
 ALpha code under blitzbasic will be released prolly a few days later since i still have some trouble with the file structure inside the packed file.
 
 | 
| satans Entry: 2
 04/08/2003
 06:02 PM
 
 | ok i started to test the compression algos on several file types and posted some screenshots of the obtained results. 
 You can check the results on
 
 www.cemporia.org
 
 
 Enjoy
 
 | 
| satans Entry: 1
 04/08/2003
 02:31 PM
 
 | Beeing working for a week on a file packer including some nice and fast compression (LZ kind of algorithm) 
 No external DLL is required !
 
 
 + Both compression algo finished and working
 + Decompression under blitzbasic finished
 + FIle data structure still needs to be work but the basis are finished too
 
 Currently working on the interface (compression and paking is made under delphi)
 
 Hope to release a beta version in a week or so (as problems come in and out ;)
 
 |