Lol I don't think the MT is overkill for todays computers, not for any game. On my machine I create more than a million MT rnds per second (for 32-bit MT), and the memory used is only a few kB.
Sure, you can do that on modern hardware. What I mean with overkill: you don't really need the ...
Search found 35 matches
- Mon Dec 19, 2011 2:07 pm
- Forum: Developer's Heaven
- Topic: msdos dissasembly
- Replies: 101
- Views: 135463
- Sun Dec 18, 2011 11:18 pm
- Forum: Developer's Heaven
- Topic: msdos dissasembly
- Replies: 101
- Views: 135463
- Sun Dec 18, 2011 10:48 pm
- Forum: Developer's Heaven
- Topic: msdos dissasembly
- Replies: 101
- Views: 135463
- Sun Dec 18, 2011 10:39 pm
- Forum: Developer's Heaven
- Topic: msdos dissasembly
- Replies: 101
- Views: 135463
Maven, I guess with 15-sided die you mean random variable which goes from 0 to 15 with equal probabilities. So, rather a 16-sided die with numbering starting from 0. If you have two random variables X, Y with p(X=i)=p(Y=i)=1/n (n=16 in this case, 0<=i<n), then you get p(max(X,Y)=i)=(2*i+1)/n^2 for ...
- Wed Dec 14, 2011 11:13 pm
- Forum: Tales of the Unknown
- Topic: Warrior vs Bard
- Replies: 14
- Views: 23394
- Sat Dec 10, 2011 12:33 pm
- Forum: Developer's Heaven
- Topic: C64 Dungeon Layout Exposed
- Replies: 12
- Views: 23004
@drifting I can't believe that 414 is the direction the party is facing when they exit the dungeon. In the msdos version they exit exactly where they entered the dungeon, facing the same dircetion they had entered. Bytes 415 and 416 are also ignored. This is the same for the Amiga version. In the ...
- Wed Dec 07, 2011 2:28 pm
- Forum: Developer's Heaven
- Topic: Tool for expansion and compression of the Huffman files
- Replies: 15
- Views: 20179
- Wed Dec 07, 2011 2:04 pm
- Forum: Developer's Heaven
- Topic: Tool for expansion and compression of the Huffman files
- Replies: 15
- Views: 20179
- Wed Dec 07, 2011 12:23 pm
- Forum: Developer's Heaven
- Topic: Tool for expansion and compression of the Huffman files
- Replies: 15
- Views: 20179
- Wed Dec 07, 2011 11:28 am
- Forum: Developer's Heaven
- Topic: Tool for expansion and compression of the Huffman files
- Replies: 15
- Views: 20179
Tool for expansion and compression of the Huffman files
I've written a tool in Python now that can expand and compress the Huffman files. If you're interested you can download it from: http://www.file-upload.net/download-3935803/tool.zip.html
You should put the files bttool.py and btfile.py into your msdos bt1 directory, then make a backup copy of your ...
You should put the files bttool.py and btfile.py into your msdos bt1 directory, then make a backup copy of your ...
- Tue Dec 06, 2011 4:48 pm
- Forum: Developer's Heaven
- Topic: BT1 clone in Python
- Replies: 21
- Views: 27306
@dulsi I've seen your project. Very, very nice. You got much more going than I have. I would have considered joining your project too, however I'm not so fond of C++ anymore. Currently, I use Python and I'm very enthusiastic about it, because I'm as productive in that language as I've never been ...
- Tue Dec 06, 2011 4:39 pm
- Forum: Developer's Heaven
- Topic: BT1 clone in Python
- Replies: 21
- Views: 27306
- Thu Dec 01, 2011 11:14 pm
- Forum: Developer's Heaven
- Topic: Item & Monster Specs
- Replies: 95
- Views: 127869
Great info, thanks. Maybe you can figure out one more thing also: in the MSDOS version the health status seems to be a bitfield, while in the C64 version it is an enum. So, what happens e.g. if a character gets withered, then dies and is healed in a temple or with BEDE. In the C64 version he must be ...
- Thu Dec 01, 2011 10:11 pm
- Forum: Developer's Heaven
- Topic: BT1 clone in Python
- Replies: 21
- Views: 27306
- Thu Dec 01, 2011 10:00 pm
- Forum: Developer's Heaven
- Topic: BT1 clone in Python
- Replies: 21
- Views: 27306
No, not at all. I don't want to keep anybody from editing anything. I mean, the code is in Python, you can plug in any map you want - e.g. you can see my first try still in src/bt/old/city_map.py (defunct now). However, then I found this site and all the information on how to decode the files and ...