Search for "tel": 94 matches

3d math by Lithium of VLA
/code/3d/docs/3d_math.zip
10 Jan 1997 (catalog date)
11,835 bytes
Download FTP scene.org
Rating:
Explanations of some 3d math concepts - I remember not getting the 3d rotations working correctly when I first started programming, but I'm not sure if that's my fault or the fault of the doc. Most of the docs are some simple linear algebra. They spell out the equations in the end for those who can't completely understand them.

3d basics by Synergist
/code/3d/docs/3dbasics.zip
10 Jan 1997 (catalog date)
2,745 bytes
Download FTP scene.org
Rating:
Some basic 3d documentation - I'd never want to tell someone that this doc is a good place to start. The person writing this has no concept of structures, which severely ease the programming of complex things such as 3d systems.

3D example by Andrew Harvey
/code/3d/systems/exampl3d.zip
30 Jun 1998 (catalog date)
385,953 bytes
Download FTP scene.org
Rating:
Good looking texturemapped 3d engine, but unfortunately there is no documentation included. Assembler

GFXFX3: Inertia 3d engine by Alex Chalfin and Jeroen Bouwens
/code/3d/systems/gfx3i099.zip
30 Jun 1998 (catalog date)
1,148,321 bytes
Download FTP scene.org
Rating:
Goodlooking 3d engine, with very complete documentation. Unfortunately only the libraries are included, while the actual source is missing. Pascal

Panard-Vision 3D Engine by Olivier Brunet
/code/3d/systems/pvsdk95d.zip
17 Jan 1999 (catalog date)
915,862 bytes
Download FTP scene.org
I couldn't get it to work unfortunately, but it seems pretty good.

GUS Environment by Patch
/code/audio/detect/gusenv.zip
10 Jan 1997 (catalog date)
1,481 bytes
Download FTP scene.org
Rating:
Grabs the Ultrasnd environment for you - Good for those who don't know how to find an environment variable, but it doesn't tell you much. It may give you a place to start.

IW SDK
/code/audio/docs/iw_sdk20.zip
10 Jul 1997 (catalog date)
2,796,518 bytes
Download FTP scene.org
Rating:
The SDK for the IW chip. The docs are Adobe Acrobat files and are probably meant for printing out. I didn't try yet, but the "univerval translator" at CMU should be able to convert the files to a text format, which would be infinitely more useful. This is one of those everything you needed to know and more type docs.

Maximum by Bear of Sinope
/code/demosrc/intros/maximum.zip
01 Jul 1997 (catalog date)
20,172 bytes
Download FTP scene.org
Rating:
Source for an effect full 4k intro. I can't tell what language most of the comments are in. The 100% register gouraud shaded texture innerloop is particularly clever.

small flame by Gaffer of PRoMETHEUS
/code/effects/fire/flame160.zip
18 Mar 1997 (catalog date)
2,964 bytes
Download FTP scene.org
Rating:
Source for a small fire routine. Doesn't actually work on my computer. To answer a question proposed by the author about size optimization, inc al is bigger than inc ax because intel doesn't have an inc /r8 instruction. inc ax is of the form inc /r16 which compiles to db 40+rw, where rw = 0 for ax, 1 for cx, 2 for dx, 3 for bx, ... inc al is of the form inc r/m8 and compiles to db FE /1 where /1 = c0 for al, c4 for ah, c1 for bl..., 05 for a memory reference.... See an intel document for more details.

Plasma Tutorial by Spansh of Dynamix
/code/effects/plasma/plastut.zip
17 Jan 1999 (catalog date)
47,158 bytes
Download FTP scene.org
Rating:
Dynamix. Definately the best tutorial on coding plasmas, also focuses on optimizing.

Sprite Editor by Karma
/code/effects/sprites/sprited.zip
17 Jan 1999 (catalog date)
40,732 bytes
Download FTP scene.org
Rating:
Unfortunately this editor misses a load option which makes it not very useful.

Peroxide Trainer Part 1 by Telemachos of Peroxide
/code/effects/worlds/pxdtut1.zip
17 Jan 1999 (catalog date)
73,945 bytes
Download FTP scene.org
Rating:
This tutorial explains how to code 3d mazes like the ones used in old games like dungeon master and eye of the beholder.

CDROM audio library by Cyrid
/code/hardware/audio/e-cda1b.zip
30 Jun 1998 (catalog date)
48,577 bytes
Download FTP scene.org
Rating:
Unfortunately it does not contain a function to play the cd using your soundcard instead of the cdrom output. C

386 programmer's manual by Intel
/code/hardware/cpu/386intel.zip
10 Jan 1997 (catalog date)
209,396 bytes
Download FTP scene.org
Rating:
Full docs on the 386 - Everything you've ever wanted to know about the (outdated) 386.

CPUID for intel by Intel engineer(s)
/code/hardware/cpu/cpuid3.zip
10 Jan 1997 (catalog date)
6,402 bytes
Download FTP scene.org
Rating:
Source to detect which intel chip is in a computer - Useful, but not much to look at. It's there for you to use if you ever need to detect what type of processor is in a machine.

CPUID for intel by Doctor Sludge
/code/hardware/cpu/cputest2.zip
10 Jan 1997 (catalog date)
10,953 bytes
Download FTP scene.org
Rating:
Source to detect which intel chip is in a computer - Detects the processor for sure, but does it by checking for invalid opcodes. If you need to detect CPU type, I suggest /code/hardware/processor/cpuid3.zip.

Intel docs by ?
/code/hardware/cpu/intel.doc
10 Jan 1997 (catalog date)
114,654 bytes
Download FTP scene.org
Rating:
A complete listing of the 80x86 opcodes - Great reference for those learning assembler and those needing to double check opcodes. Dubious clock listings (none for pentium.)

Collection of ASM sources by ? of Blue Nose Productions
/code/hardware/general/asm_good.zip
10 Jan 1997 (catalog date)
118,612 bytes
Download FTP scene.org
Rating:
Lots of ASM sources, mostly for hardware and BIOS routines - It's somewhat difficult to find what you want, but the comments tell you what you need to know (but not what you have to do) to get everything compiled. Looks like a great source for the cut & paste coder. Given the nature of the routines, I'd say that was the intended purpose of this release.

Ralf Brown's Interrupt List
/code/hardware/general/telerama.zip
17 Jan 1999 (catalog date)
827,866 bytes
Download FTP scene.org
Rating:
Every coder should download this, it's the best interrupt list around.

Keyboard handler by Patch
/code/hardware/keyboard/kbdhand9.zip
10 Jan 1997 (catalog date)
26,409 bytes
Download FTP scene.org
Rating:
Source for making a keyboard handler (int 9) and reading the keyboard from the handler - Doesn't tell you much, but is a good demonstration. I'd suggest for those needing to write a keyboard handler is to get a hardware reference for the keyboard and see what other options are available and how the code works.

Peroxide Trainer Part 6 by Telemachos of Peroxide
/code/hardware/keyboard/pxdtut6.zip
17 Jan 1999 (catalog date)
20,234 bytes
Download FTP scene.org
Rating:
This tutorial explains how to program interrupts, timers and keyboard handlers.

Peroxide Trainer Part 2 by Telemachos of Peroxide
/code/hardware/memory/pxdtut2.zip
17 Jan 1999 (catalog date)
11,137 bytes
Download FTP scene.org
Rating:
This tutorial explains how to use ems memory.

XMS Specification by MS, Intel, Lotus, ?
/code/hardware/memory/xms2spec.zip
10 Jan 1997 (catalog date)
9,431 bytes
Download FTP scene.org
Rating:
XMS Specifications - The complete specification of the XMS standard.

FreePack DOS extender by Narech Koumar of Supernar Systems Intl.
/code/hardware/pmode/dos32a.zip
25 Aug 1997 (catalog date)
520,938 bytes
Download FTP scene.org
Rating:
Another DOS extender option. I didn't test this for usefulness. I doesn't look any more difficult to learn to use than Adam Seychell's (sp?) Dos32 or Thomas Pytel/Charles Scheffold's Pmode/w. How well it functions is another story. Full documentation available. Comes with a tetris clone presumeably made using the extender. No source.

GIF 2 LBM by Daniel Hatadi
/code/images/gif2lbm.zip
15 Apr 1997 (catalog date)
17,893 bytes
Download FTP scene.org
Very simple bitmap converter. This converts plain 256 colour GIFs to the LBM format used with Themie Gouthas' XLIB. It also saves the palette separately in a .PAL file.

Television Viewer by Bullhead of Plastic Surgery
/code/images/ps_tvv.zip
17 Jan 1999 (catalog date)
99,252 bytes
Download FTP scene.org
Rating:
Displays a bmp,pcx,tga or lbm picture on the screen using a fake hicolor mode.

The Mag by Spellcaster
/code/mags/mag05.zip
01 Jul 1997 (catalog date)
20,724 bytes
Download FTP scene.org
Rating:
A serial coding magazine. Continuing into Pascal, arrays, memory. Contains a fairly complete list of assembler opcodes (courtesy Intel).

Peroxide Trainer Part 3 by Telemachos of Peroxide
/code/tutors/graphics/pxdtut3.zip
17 Jan 1999 (catalog date)
26,393 bytes
Download FTP scene.org
Rating:
This tutorial explains how to code 3d vectors using flatshading and glenzing.

Peroxide Trainer Part 4 by Telemachos of Peroxide
/code/tutors/graphics/pxdtut4.zip
17 Jan 1999 (catalog date)
27,821 bytes
Download FTP scene.org
Rating:
This tutorial explains how to code different kind of polyfillers including gouraudshaded, texturemapped and environmapped polygons.

Peroxide Trainer Part 7 by Telemachos of Peroxide
/code/tutors/graphics/pxdtut7.zip
17 Jan 1999 (catalog date)
50,278 bytes
Download FTP scene.org
Rating:
This tutorial explains how to code a wolfenstein 3d engine.

Peroxide Trainer Part 5 by Telemachos of Peroxide
/code/tutors/video/pxdtut5.zip
17 Jan 1999 (catalog date)
22,362 bytes
Download FTP scene.org
Rating:
This tutorial explains how to access the vesa 1.2 modes.

Peroxide Trainer Part 5, C-version by Telemachos of Peroxide
/code/tutors/video/pxdtut5c.zip
17 Jan 1999 (catalog date)
33,744 bytes
Download FTP scene.org
Rating:
This tutorial explains how to access the vesa 1.2 modes.

Bootgame by Ko-Ko
/code/utils/boot/bootgame.zip
18 Jan 1998 (catalog date)
11,940 bytes
Download FTP scene.org
Rating:
Puts a game into the bootsector of a floppy! Unfortunately, the game is not timed and unplayable on modern computers.

Netwide Assembler by Simon Tatham, Julian Hall
/code/utils/compiler/nasm094.zip
02 Jul 1997 (catalog date)
320,576 bytes
Download FTP scene.org
Rating:
A freeware assembler with good support. People have been switching from TASM to this assembler, especially linux and 68K coders. It is still being supported by the makers so it understands newer op codes, like mmx instructions, so you don't need to get intel's 'macros' for new opcodes.

Windows Tutorial by Denthor of Asphyxia
/code/windows/wintut1.zip
19 Jan 1998 (catalog date)
15,071 bytes
Download FTP scene.org
Rating:
Windows Tutorial 1. Denthor's back with some tutorials on windows graphics program. I (and he) recommend that you still get another reference (like a *gasp* book) if you know absolutely nothing about programming windows and intend to get serious about it. The tut has just enough info to grasp how windows works, the mindset needed for coding, and some basic messages windows can throw at you. Good for the ultra-beginner with windows. (Oh, the example here is a star field)

Fractal Genesis by Aristoteles Designs
/demos/1994/f/fg.zip
29 Jun 1996 (catalog date)
5,151 bytes
Download FTP scene.org
Rating:

Wasteland by SCC
/demos/1994/w/wl.zip
14 Jan 1997 (catalog date)
1,612,130 bytes
Download FTP scene.org
Rating:
Released at event ASM94 in the demo division and ranked XX

Hyytelo by Symptom
/demos/1994/y/y_hyy.zip
29 Jun 1996 (catalog date)
77,390 bytes
Download FTP scene.org
Rating:

BBS Teletro by Fiction
/demos/1995/t/teletro.zip
30 Jun 1996 (catalog date)
18,478 bytes
Download FTP scene.org
Rating:

Television by Orange
/demos/1995/t/tv.zip
14 Aug 1997 (catalog date)
676,443 bytes
Download FTP scene.org
Rating:
Released at event ASM95 in the demo division and ranked 07

Optical Illusion by Intellius of Bamboosh
/demos/1996/b/bmb4kbp3.zip
13 Jul 1996 (catalog date)
5,623 bytes
Download FTP scene.org
Rating:
Released at event BP96 in the in4k division and ranked ??

Hotel by Production
/demos/1996/h/hotel.zip
30 Jun 1996 (catalog date)
1,679,175 bytes
Download FTP scene.org
Rating:
Released at event NAID96 in the demo division and ranked ??

Intel Outside 3 4k Intro Compo Entries
/demos/1996/i/io3_4k.zip
02 Mar 1997 (catalog date)
16,251 bytes
Download FTP scene.org

Pastel by Controlled Dreams
/demos/1996/p/pastel.zip
17 Dec 1996 (catalog date)
20,021 bytes
Download FTP scene.org
Rating:
Released at event CAC96B in the in4k division and ranked ??

Interstellar Phenomenon by Sensorium
/demos/1996/s/sen-isp.zip
20 Jul 1996 (catalog date)
181,558 bytes
Download FTP scene.org
Rating:

Super Television by Orange
/demos/1996/s/stv.zip
14 Sep 1996 (catalog date)
1,271,170 bytes
Download FTP scene.org
Rating:
Released at event ASM96 in the demo division and ranked 04

Summer by Rastan of Byteland
/demos/1997/b/bld_sumr.zip
24 Oct 1997 (catalog date)
12,266 bytes
Download FTP scene.org
Rating:
Released at event GRV97 in the in4k division and ranked 04

Intel by Jeskola
/graphics/images/1993/inteli.zip
04 Jul 1996 (catalog date)
13,676 bytes
Download FTP scene.org
Rating:
Released at event TP93 in the grfx division and ranked 08

Inside Intel? by Azzrael
/graphics/images/1994/c/c_intel3.zip
04 Jul 1996 (catalog date)
2,777 bytes
Download FTP scene.org
Rating:
Released at event TP94 in the grfx division and ranked XX

Big Bartels by Landru
/graphics/images/1995/b/bartels!.zip
04 Jul 1996 (catalog date)
20,294 bytes
Download FTP scene.org
Rating:
Released at event WIR95 in the grfx division and ranked 11

Comme a la tele by Krystal of MWB
/graphics/images/1996/c/comme.zip
06 May 1998 (catalog date)
151,322 bytes
Download FTP scene.org
Rating:
Released at event WIR96 in the grfx division and ranked 30
640x480x256

Rip Paint Editor by Telegrafix
/graphics/programs/editors/ripaint.zip
22 Sep 1996 (catalog date)
2,192,477 bytes
Download FTP scene.org

The Storyteller by Dna-groove of Embryo
/music/contests/mc5/intermed/m5i-stor.zip
29 Aug 1997 (catalog date)
246,377 bytes
Download FTP scene.org
Released at event MC5 in the mmul division and ranked I06

Bunny Tell by Workbench
/music/contests/mc6/veteran/m6v-btel.zip
28 Mar 1999 (catalog date)
288,714 bytes
Download FTP scene.org
Released at event MC6 in the mmul division and ranked XX

Various Songs by Jeroen Tel
/music/disks/1996/jt_mon.zip
23 Jul 1996 (catalog date)
1,421,274 bytes
Download FTP scene.org
Rating:

Get A Day Job by iago of intellicore
/music/disks/1997/dayjob.zip
16 Aug 1997 (catalog date)
754,038 bytes
Download FTP scene.org

Dee Musicdisk Two by Dee
/music/disks/1997/dee2.zip
01 Feb 1997 (catalog date)
4,250,859 bytes
Download FTP scene.org
Rating:
Slam! This is how a music disk should be done. Absolutely the best interface I've seen for a music disk since Epidemic. Not only that, but the interface is configurable... you can actually use it for your own productions. The music kicks ass. If you only download a couple music disks this year, be sure that one of them is Dee Musicdisk Two!

The American Intelligensia by scin lenina of intellicore
/music/disks/1997/ic-amin.zip
10 Dec 1997 (catalog date)
382,981 bytes
Download FTP scene.org

Electronic Ear Candy For The Masses by scin lenina of intellicore
/music/disks/1997/ic-candy.zip
06 Sep 1997 (catalog date)
544,250 bytes
Download FTP scene.org

Sonic And Knuckles by iago of intellicore
/music/disks/1997/ic-sonic.zip
28 Nov 1997 (catalog date)
782,631 bytes
Download FTP scene.org

Rainbow Storm by Kosmikko, Holycow, Andy Mob of Dark Stellar
/music/disks/1998/ds-rs.zip
01 Jul 1998 (catalog date)
4,120,396 bytes
Download FTP scene.org

The Pulse 0.90 by Ladislav Lostak of Unreal
/music/programs/players/pulse090.zip
20 Sep 1998 (catalog date)
1,009,064 bytes
Download FTP scene.org
New Czech player of all types of mods, mp3 and wav for Win95/98/NT. The newest beta version brings completely rebuilt system based on "components" (allows to add new features, e.g. new format loader, just by adding the dll library to the directory), new design structure (non-rectangle windows, animated buttons, ...} that allows to change design on-fly while playing, and WinAMP skins support with non-observed differences, 12-parameter Reverb editor with presets saving, simple playlist editor, pop-up menu on right-click, external tools for associating extensions and Systray, several new (and splendid) designs, nice splash-screen on start, sid format support (Commodore 64), full-customizable taskbar using "Captions", and lots of more features which are to be improved in upcoming versions. Supports 669, far, fnk, it, m15, mdl, med, mod, mtm, mp1/2/3, nst, raw, s3m, sid/dat, stm, ult, wav, wow and xm.

Funk Xi Instrument Pack by PiCoder of Seaber Designs
/music/samples/sed-xi01.zip
06 Oct 1997 (catalog date)
2,961,600 bytes
Download FTP scene.org
This pack contains absolutely ultimate quality samples for extra high sound fidelity, 17 FT2 format XI instruments

Seaside Hotel by Purple Motion, Mik
/music/songs/1995/s/seaside.zip
24 Sep 1996 (catalog date)
327,040 bytes
Download FTP scene.org
Rating:
Released at event JUH95B in the mmul division and ranked 15
(S3M)

Teleportation by Gizmo
/music/songs/1995/t/teleport.zip
21 Sep 1996 (catalog date)
315,844 bytes
Download FTP scene.org
Rating:
Released at event TP95 in the mmul division and ranked 17
(XM)

Graenatel's Masterpiece by Lord Blanka the Black
/music/songs/1995/t/tlgrae.zip
20 Sep 1996 (catalog date)
303,696 bytes
Download FTP scene.org
Rating:
(S3M)

Intelligent Reload (Remix) by Oona
/music/songs/1996/o/o-re_hsi.zip
22 Sep 1996 (catalog date)
232,892 bytes
Download FTP scene.org
Rating:
(XM)

Tell Me by Psychodelix
/music/songs/1996/p/psy-tell.zip
22 Sep 1996 (catalog date)
1,611,441 bytes
Download FTP scene.org
Rating:
(XM)

Sighs by Telperion
/music/songs/1996/s/sighs.zip
22 Sep 1996 (catalog date)
209,300 bytes
Download FTP scene.org
Rating:
(S3M)

Wasteland '96 Remix by DJ Tek
/music/songs/1996/t/tek-wmix.zip
22 Sep 1996 (catalog date)
187,563 bytes
Download FTP scene.org
Rating:
(S3M)

Telephonic Soulsap by Bucklehead
/music/songs/1996/t/telephon.zip
19 Mar 1997 (catalog date)
454,334 bytes
Download FTP scene.org
(S3M)

Vinguttelu by Pave
/music/songs/1996/v/vingutt.zip
15 Mar 1997 (catalog date)
15,867 bytes
Download FTP scene.org
Released at event DML96B in the mmul division and ranked 10
(S3M)

Satellite One by Bibby
/music/songs/1997/b/bib-sat1.zip
17 Mar 1997 (catalog date)
316,720 bytes
Download FTP scene.org
(IT)

Roma tells it all by Infinite of drd, adp, sx32
/music/songs/1997/i/inf_roma.zip
30 Dec 1998 (catalog date)
480,582 bytes
Download FTP scene.org
Released at event DST97 in the mmul division and ranked 09

Whitelined Motion by Keith303 of Radical Rhythms
/music/songs/1997/k/k3o3wmtm.zip
12 Jul 1997 (catalog date)
612,325 bytes
Download FTP scene.org
(XM)

Lately... by Rockoon
/music/songs/1997/l/lately.zip
21 Aug 1997 (catalog date)
483,562 bytes
Download FTP scene.org
(IT)

The Cosmic Lighthouse Hotel Ballroom Dance by Urge of Danger High Voltage Records
/music/songs/1998/e/ez-clhbd.zip
21 Mar 1998 (catalog date)
461,092 bytes
Download FTP scene.org
(XM)

If I'll Never Tell U That by It-Alien of .parenthesis.
/music/songs/1998/i/it-if.zip
26 Aug 1998 (catalog date)
138,928 bytes
Download FTP scene.org
(XM)

Mysterious Intellect by kTov
/music/songs/1998/k/ktov_int.zip
29 Jun 1998 (catalog date)
371,462 bytes
Download FTP scene.org
(IT)

Let Me Tell You What I'm Feeling by The Nightstalker of ZFX
/music/songs/1998/n/ns-letmt.zip
21 Apr 1998 (catalog date)
690,552 bytes
Download FTP scene.org
(XM)

Never Stop by fff
/music/songs/1998/t/telefon.zip
21 Apr 1998 (catalog date)
203,470 bytes
Download FTP scene.org
(XM)

Military Intelligence by Subject 6 of Theralite
/music/songs/1998/t/tlt_mil.zip
21 May 1998 (catalog date)
432,806 bytes
Download FTP scene.org
(IT)

Intel Outside 3 Results
/party/results/1996/io3-res.zip
23 Oct 1996 (catalog date)
2,022 bytes
Download FTP scene.org

Intel Outside 4 Preliminary Results
/party/results/1997/io4_pres.txt
26 Aug 1997 (catalog date)
2,131 bytes
Download FTP scene.org
Released at event IO97

Carmel Snack Pack by Dintel
/tla/songs/1994/s3m/csp.zip
15 Sep 1996 (catalog date)
99,174 bytes
Download FTP
Rating:

Pickle Ball by Sujjarit Patel
/tla/songs/1995/mtm/sp-pick.zip
16 Sep 1996 (catalog date)
200,338 bytes
Download FTP
Rating:

Betelgeuse by Heaven
/tla/songs/1995/xm/b/betelgeu.zip
21 Sep 1996 (catalog date)
229,952 bytes
Download FTP
Rating:

Hydrochloric Wasteland by Deus
/tla/songs/1995/xm/h/hydrochl.zip
21 Sep 1996 (catalog date)
390,091 bytes
Download FTP
Rating:

Friends (Hit U Harder-Remix) by Rtificial Ntelligence
/tla/songs/1995/xm/r/rn_frnd2.zip
24 Sep 1996 (catalog date)
294,245 bytes
Download FTP
Rating:

Friends (Hyper-Remix) by Rtificial Ntelligence
/tla/songs/1995/xm/r/rn_frnds.zip
24 Sep 1996 (catalog date)
101,623 bytes
Download FTP
Rating:

Return From the Wasteland by Subliminal
/tla/songs/1996/it/s/s-return.zip
01 Oct 1996 (catalog date)
157,800 bytes
Download FTP
Rating:

Moderately Dark by Karl Herrebout
/tla/songs/1996/s3m/m/mdark.zip
22 Sep 1996 (catalog date)
58,960 bytes
Download FTP
Rating:

Collabra '96 by PowerMike
/tla/songs/1996/s3m/p/pm-yotel.zip
22 Sep 1996 (catalog date)
134,482 bytes
Download FTP
Rating:

Sattelight by Ivok
/tla/songs/1996/xm/i/i_satlig.zip
16 Nov 1996 (catalog date)
96,694 bytes
Download FTP
Rating: