Problem - "IDS?"
-
StarTrader wrote:
ResHack can do this tooI wish it could, but it cannot.
The magic of Res2RC is that it handles the xml resources (IDS_Info) that ResHacker does not.
Also, ResHacker cannot read or create full string tables. It bastardizes them when it creates a .rc script.
As for a tutorial, I believe that the standard assumption is that “everybody is a programmer”.
Standard Hint #1: If it does not have a Windows interface, then it is probably a console app. Run it in a Command Window.
Standard Hint #2: If the default Help is insufficient, then read the header in the .cpp file.
-
@StarTrader: I’m predominately a command line user, so as Bullwinkle suggests, you should run it through a Command Prompt. You should also visit my site, which is where I say there are no docs, just run it for usage. But of course, you don’t know about the command line, so just running it apparently does nothing. I don’t really want to explain the command line, but if you want to know what it generates, grab the resource sources from my site. A little sample:
STRINGTABLE { 1002, "Javelin Missile" // RTC 1003, "Javelin Missile" 1004, "Slingshot Missile" 1005, "Catapult Missile" ... 3609, "Countermeasure Flare" 3610, "Imp. Countermeasure Flare" 3611, "Adv. Countermeasure Flare" } 2002 23 { L"<rdl><push>\ <tra bold="" true""=""><just loc="" center""="">\ <text>J63 ""Javelin"" Missile Launcher</text><para>\ <para><tra bold="" false""=""><just loc="" left""="">\ <text>The Javelin Missile LauncherÆs main attribute is its stalwart \ reliability, delivering a punishing payload accurately and effectively. This \ and its relatively inexpensive cost make the Javelin a welcome addition to any \ arsenal.</text><para>\ <para>\ <text>* Requires Javelin Missile.</text><para>\ <para>\</para></para></para></para></just></tra></para></para></just></tra></push></rdl> " } ... 4611 23 { L"<rdl><push>\ <tra bold="" true""=""><just loc="" center""="">\ <text>Advanced Countermeasure Flare</text><para>\ <para><tra bold="" false""=""><just loc="" left""="">\ <text>Based on the same technology as the rest of the CM series, however the \ CM-3 has a greater effective range against a wider array of ordinance.</text>\ <para><para>\ <text>* Fired by Adv. Countermeasure Dropper.</text><para>\ <para>\</para></para></para></para></just></tra></para></para></just></tra></push></rdl> " }
@Bullwinkle: I didn’t really want to write a compiler/linker, since they are freely available (for example, the 2003 Toolkit; I meant to mention that, but forgot). Besides, if I write a compiler, there’d really be no need to write it as .rc, which actually might not be a bad idea…
-
adoxa wrote:
I didn’t really want to write a compiler/linker, since they are freely available (for example, the 2003 ToolkitOooh, good thinking! That way everybody would have a C++ compiler!
Of course I was not thinking about making a full compiler anyway, but a tutorial is certainly easier than any coding solution.
Do you mean the Visual C++ 2003 Toolkit? If so, I do not think it is available anymore. But Visual C++ Express is.
@Startrader - If you need more help than the hints above, I could put together a little tutorial. I am actually a big believer in good documentation.
-
Guys, I hesitate to come out of my nice warm dark closet, but here it is in full…
I am a very old mainframe systems engineer going back to the early 1970s with Burroughs and then IBM, Amdahl, Hitachi and others. I used to (had to for diagnosis) write machine code and then in REXX, Algol, PL/I, PL/II and others. I can get by in several languages in amateurish beginner fashion. I have also been using PCs since the original in 1984, and older non-IBM PCs before then with several operating systems that had shells/consoles like CP/M and Unix and later I played with Linux etc.
And I have also managed (bullied) programmers who are typically like you guys, bashing out loads of really useful systems utilities but without user guides, and worse - without user error traps!
Yeh I know why - they are nerds, just want to push out good utilities faster, or get a project finished, and they hate doubling or trebling the size of their code for stupid users’ error traps - they love machines, despise users - I used to call them LMDU’s (and other less-endearing terms) long before the term nerd came out!
So I am not really the problem, I can usually work things out and the DOS prompt is the second step after double-clicking the darn thing.
But - I often pretend to have difficulties when I see useful utilities that don’t cough up, and this is for the sake of other people that would not find it easy and would not get a guide if I or others don’t ask for one.
But in your favour, I ONLY do it for useful utilities.
By the way I’m glad you didn’t take my post the wrong way, it wasn’t meant to be offensive, just part of the role-play but I think I came close to the line on reading it again.
Mind you when I am cross it comes out the same way too!
In most cases (such as this one perhaps?) a simple one- or two-line help readme.txt is enough, so that others who are not familiar can get started. I don’t like long-winded guides - even if I do write the longest ones myself!
So it should be a standard content of every release of anything, just a simple “Put this in a new folder and run it from a cmd prompt! Add /? switch for help.”
Do others a favour, they are often purely beginners. Copy this line and put it into a readme.txt and issue it with appropriate slight modification in your next and every release!
Now that I have come out of my closet I can’t expect to be taken seriously for this type of request, can I?
So someone else will have to do the moaning and groaning on my behalf!
As for me?
All I need is a completed SUR exporter/ SUR builder so I can fix the many bad Kilrathi and Nephilim ship surs in my RRJDS 2.82 mod which are causing crashes ( our Guild players are deserting us, and it is a shame because it is a good mod and we were the inventors of Fairness, Sportsmanship and Honour in FL gameplay from back in 2003/4 when almost every server was a slaughterhouse for beginners ) and then when I have published the fix and made the mod stable, I will retire from FL gaming.
So there you have it all!
Thanks guys.
One more question - what utility will rebuild the dll from the RES2RC output then?
Or if that’s not it, what utility and what format input? I really don’t know this one. I’ve done everything I needed using ResHack and text editors/excel until now. Did OK, also wrote a diddy that changes the STATs layout by a user-editable template. <smirk>Wonder if it’s because of lack of documentation? LMDUs strike again? Hmmm, now there’s a thought - docs also give more publicity! Well, I never thought of that until now! <sly grin=“”>:D</sly></smirk>
-
Res2RC is adequately documented for what it is… a programmer’s utility.
You use a C++ compiler to recompile the .rc scripts back into DLLs.
Please don’t lump adoxa and me with your newbie programmers. I have yet to see an unhandled exception in any of adoxa’s utilities, and my documentation is well-known (at least professionally).
But, don’t worry about offending anyone, Startrader. I just look for the little nuggets of wisdom that you hide in the rest.
-
OK, good to know! Thanks.
Got time for another short story? lol
No, they weren’t newbie programmers, the guys I worked with were supporting Burroughs and later on IBM Operating Systems and utilities who had been in the business a very long time but had got away with few error-traps or docs until I was sent along to bug them. It was pioneering and continuous work, fixing the OS by patching! Forever being told “Don’t worry, it’ll all be fixed in Version 3.0!” Which eventually came along with so many more of its own bugs! But in those days we also had the 16kb limit on program size (any of you guys remember that?) so we (they) used error numbers and translated them in separate documentation - which never got written, especially the Burroughs ones!
They were much older than me then, and most of them are sadly probably deceased by now. Great guys, I enjoyed riling them. They took it well from a young upstart engineer though, our pinnacles of Software Support! Of course I got a lot of “do me a favour - piss off and get me a Fresh Banana Coffee from Brazil, will you!” - and I loved it when I came back with a supportable-by-evidence “HA! That patch didn’t work either! There’s the dump! Back on your Heads, you Scurvy Sysprogs!”. No Banana coffee though, only machine-black hot water, with and without sugar!
In those days we could smoke in offices, and the sysprogs could always be easily identified even if you didn’t know them - any desk surrounded by 8 to 10 6-7ft stacks of continuous-forms printout (dumps) and a cloud of cigarette smoke billowing upwards from behind, with loud keytapping noises accompanied by the occasional loud curse! That was a sysprog.
I worked loosely with the last couple of sysprogs of the same generation when we were working on Y2K compliance on ICL machines, one was 60 and the other 63! There was also a big shortage of programmers worldwide then. These two of mine had to revamp an awful lot (I think it was about 25 million lines between them) of mainly COBOL programs and had an awful time unravelling the authors’ work and thought-processes from the previous 2 decades! I kept telling them it was because they and their colleagues of those days had been LMDUs! lol
They did wonders anyway, writing their own utilities to automate as much of the work as possible, testing and retesting, setting up very complex test systems, and Y2K went without a hitch for our customers. They were all unsung heroes in my opinion, and not to be forgotten, working 12-18 hours a day for weeks on end including weekends to make it in time on limited budgets. If there had been an anti-smoking law then it would have been broken worldwide by sysprogs and they would have been working from jail!
And all because of lazy space-saving 2-digit programmers! Heheheh.
If any of you remember there had even been a stupid panic to not use lifts in case they crashed or went to emergency position with a load of passengers!
Ah, the fun days! You young guys don’t know what you missed!
-
My first computer was the Amstrad CPC 464, 64K total memory (including video), using tape. I used it right up until the end of '94. That’s partly why I include the source for everything, since I grew up with type-ins.
As far as Res2RC goes, if you don’t know the command line, it’s probably no good to you anyway. But point taken (still doesn’t mean I’ll write readme’s, though).
-
adoxa wrote:
My first computer was the Amstrad CPC 464Ah… the classic Z80! From CP/M to Pac-Man to military flight avionics, it is a classic.
Was that machine your motivator to become fluent in assembly language?
Your documentation may be terse but it usually does the job. Headers in the source are more important than readme files.
The only thing I ever had trouble with was the “topics” in Console… I kept typing “help ships” until I finally figured out that I should type “help player” instead.
@Startrader: So, if I understand your story correctly, then you were partially responsible for creating that Y2K problem in the first place?
(Just kidding)
-
Far from it, I was not a sysprog, sadly - I would be earning tons of money today if I had gone that way instead of fixing processors. Actually the majority of our problems were in disk and tape subsystems and printers as processors became more reliable.
My involvement with the sysprogs was because I had overall responsibility for a major customer who had 3 large systems, the largest in the UK, and I had to prod and poke our sysprogs in supporting that customer with (continuous!) quick fixes to the Operating Systems and applications and utilities - hence the stacks of dumps. That happened in two stages in my career, and sysprogs were integral to our hardware teams.
And then in the late 90’s I was involved in supporting those ICL customers via the 2 sysprogs who were making the fixes for them. Somehow, IBM systems were not so affected but IBM nonetheless made an awful lot of money selling “Y2K-compliant” upgrades!
adoxa - OK, how about making me or BW your Technical Writer? Tell him what it’s supposed to do, and he can write your docs while you bash out more utilities.
-
Sure, if you’d like to write the docs, I’ll update the zips. I just feel that for these basic utilities, the normal help screen is enough. But as you point out, only for those that know to use the command line.
Learning assembly was just a natural progression, since that was basically the only choice after BASIC. I did have a Pascal compiler, but it produced 10K programs at a minimum, which is quite a lot when you have to load it from tape. All the editors I used were line-based, glad those days are over. When I first saw Turbo Pascal’s syntax highlighting, I was so impressed, I managed to do it for BASIC listings. One of the most useful things I ever wrote. Had a few type-ins published (one in an Aus mag and three in two UK mags).
-
Cool.
I don’t envy you doing the type-in assembly work but, on the other hand, you developed an awesome set of skills from having done it.
Here is a DLL-building Tutorial for the people who do not already have a C++ compiler:
How to Compile a .DLL from a .RC Script
I think that StarTrader was just kidding about not knowing how to run a console app. If there is real interest, I could make a tutorial on that, as well. However, I assume that most modders already know the basics of how to use their computers.
.
-
Needs a nice post to balance that “last” one…
My 1st PC… if you could call it that, was a Oric 16k… i still have her & the manual & program book (i spent 6 days coding space invaders only to mess it at the end when i went to load it down to my tapedrive… dam…) thing had the strangest keyboard you’ll ever see… more like today’s pda raised keys than an actual keyboard… fun times.
But yepers… even those that are quite good at scanning code & learning therefrom need a quick guide every now and then as to what does what for that, n, stuff If anything it helps more on the “foggy” days when i just aint at 100%.
-
Xarian_Prime wrote:
Needs a nice post to balance that “last” one…If you thought something was not “nice” then it was probably a translation error, Xarian.
I posted a tutorial with screenshots, offered to make another tutorial, complemented adoxa, and StarTrader already said that he was kidding.
This entire thread has been “nice”! Sorry if the jokes don’t always translate properly… I have found humor to be the most difficult thing to understand in other languages.
-
<st punches=“” the=“” rofl=“” button=“” he=“” doesn’t=“” have…=“”>:D</st>
-
StarTrader wrote:
“and then when I have published the fix and made the mod stable, I will retire from FL gaming”BOOOOO…
This would suck tremdously large donkey appendage…
-
lolz… i meant “my” last post… ye know, the one about doors 'n a$$es… :pint:
-
Xarian_Prime wrote:
lolz… i meant “my” last post… ye know, the one about doors 'n a$$es… :pint:Definitely a translation error there… that was your first post in this thread!
So I obviously have no clue what “last post” you are talking about, but thank you for your “clarification”.
I think…
:S
-
CynicalRaver - You did What? You sucked a donkey’s appendage???!!! Is this a regular thing you do?
Well I know I wouldn’t be telling anyone if I had.
Care to translate?
-
LOL
No…
Im just saying would blow if you stopped FL stuff.
Who would i bother with my noobish questions?
FriendlyFire? - Prob ban meGypsy
-
Yeh, he came close to banning me!