Author Topic: Request  (Read 330 times)

Offline DREDIOCK

  • Plutonium Member
  • *******
  • Posts: 17775
Request
« on: February 21, 2004, 12:20:38 AM »
Couple of requests really.

I would really lke to see  something like we had in AW where after you land or are shot down that lists your last 5 or so kills.
Alot of times we get caught up in the moment of a fight and do not have time to see who you just killed. Then you land and see you got for example 5 kills. But you have no idea who it was you killed.
Myself personally I would like to know.

Another request has to do with the Strat list.
When listing the feilds while looking at strat   Would you kindly place them in numerical order?
It would make finding the info on the feild you want to look up about 1000 times easier. The Way its set up now is a real PIA.
Death is no easy answer
For those who wish to know
Ask those who have been before you
What fate the future holds
It ain't pretty

Offline JB73

  • Plutonium Member
  • *******
  • Posts: 8780
Re: Request
« Reply #1 on: February 21, 2004, 02:26:16 AM »
Quote
Originally posted by DREDIOCK
Another request has to do with the Strat list.
When listing the feilds while looking at strat   Would you kindly place them in numerical order?
It would make finding the info on the feild you want to look up about 1000 times easier. The Way its set up now is a real PIA.
then all bases would have to be named

0001
0014
0214

always a zero in front of the name. computers are stupid. make 10 text files in a folder naming them 1,2,3,4,5,6,7,8,9, and 10.

then arrange the folder contents by name.

the order will go:
1
10
2
3
4
5
6
7
8
9

putting the "1"'s together like AH does now.

unless you name all bases with a zero digit in front (and all base numbers with the same ammount of digits IE XXXX) you wont get a "numerical" list.

even 01,02,0123,044,04,022 wouldnt sort right. not the same ammount of digits.

it would go:

01
0123
02
022
04
044

it has to be 0001 and so on. hope this makes sence and explains it.
I don't know what to put here yet.

Offline moot

  • Plutonium Member
  • *******
  • Posts: 16333
      • http://www.dasmuppets.com
Request
« Reply #2 on: February 21, 2004, 05:17:43 AM »
Add the kill names to the (promised:) post flight statistic .txt dump, maybe at the beginning of the log, with other general info so the people not inclined to search thru the rest of the exact (stats etc) info that follows below don't have to scroll down (much).
Hello ant
running very fast
I squish you

Offline DREDIOCK

  • Plutonium Member
  • *******
  • Posts: 17775
Re: Re: Request
« Reply #3 on: February 21, 2004, 10:45:17 AM »
LOL that would be fine by me

Orrr is ther a dot command we can use to bring up info on a particular feild?
IF not
I am now formally requesting one. lol


Quote
Originally posted by JB73
then all bases would have to be named

0001
0014
0214

always a zero in front of the name. computers are stupid. make 10 text files in a folder naming them 1,2,3,4,5,6,7,8,9, and 10.

it has to be 0001 and so on. hope this makes sence and explains it.
Death is no easy answer
For those who wish to know
Ask those who have been before you
What fate the future holds
It ain't pretty

Offline Ecliptik

  • Nickel Member
  • ***
  • Posts: 515
Request
« Reply #4 on: February 21, 2004, 01:43:15 PM »
Quote
computers are stupid.


Computers are only as stupid as those who program them.  It's very trivial to write a sorting algorithm to give shorter strings higher precedence than longer ones, so "1" would always appear before "10".  "A9" would always be before "A23".  Such a sort would be limited by its fairly specific purpose, but it's still only a handful of lines of code.  Drediock's request is easy to fufill.

Offline JB73

  • Plutonium Member
  • *******
  • Posts: 8780
Re: Re: Re: Request
« Reply #5 on: February 21, 2004, 04:39:04 PM »
Quote
Originally posted by DREDIOCK
LOL that would be fine by me

Orrr is ther a dot command we can use to bring up info on a particular feild?
IF not
I am now formally requesting one. lol
in AHII you can right click the filed you want on the map and bring up strat FYI.

hope that helps
I don't know what to put here yet.

Offline JB73

  • Plutonium Member
  • *******
  • Posts: 8780
Request
« Reply #6 on: February 21, 2004, 04:40:32 PM »
Quote
Originally posted by Ecliptik
Computers are only as stupid as those who program them.  It's very trivial to write a sorting algorithm to give shorter strings higher precedence than longer ones, so "1" would always appear before "10".  "A9" would always be before "A23".  Such a sort would be limited by its fairly specific purpose, but it's still only a handful of lines of code.  Drediock's request is easy to fufill.
ive never seen a computer that would put 9 before 10 naturally unless there was a 0 before the 9

if its so easy why has noone done it?
I don't know what to put here yet.

Offline DREDIOCK

  • Plutonium Member
  • *******
  • Posts: 17775
Request
« Reply #7 on: February 22, 2004, 12:24:03 AM »
Probably done by engineers all of whom I am utterly convinced are all stuck in Rube Goldberg mode. Cause I've never met one that designed anything that wasnt about 20 times more complicated then it needed to be.
LMAO

Quote
Originally posted by JB73

if its so easy why has noone done it?
Death is no easy answer
For those who wish to know
Ask those who have been before you
What fate the future holds
It ain't pretty

Offline Spork42

  • Zinc Member
  • *
  • Posts: 51
Request
« Reply #8 on: February 22, 2004, 04:01:15 AM »

(On windows XP Pro. I think XP Home does this as well.)

Offline Ecliptik

  • Nickel Member
  • ***
  • Posts: 515
Request
« Reply #9 on: February 22, 2004, 12:32:28 PM »
Quote
ive never seen a computer that would put 9 before 10 naturally unless there was a 0 before the 9


Because you're looking at things that put strings in strictly alphabetical order, like file lists.   If you're dealing with alphanumeric strings of arbitrary length, usually you just treat numbers like letters.  Other orderings a little more tricky and only make sense depending on what you're sorting.  For something special like field names that are always one letter followed by a number up to three digits long, it's simple to ensure 9 goes before 10.  Trust me, I have done it.  ;)
« Last Edit: February 22, 2004, 12:43:05 PM by Ecliptik »