IPB

Welcome Guest ( Log In | Register )


> #0001 -- ThirdSide And More...
SeekSomethingNew
post Jul 28 2009, 05:33 PM
Post #1

Stealth Tank
Group Icon

Group: Members
Posts: 1,025
Joined: 31-October 06
Member No.: 208
Alliance: GDI
Favorite game: Tiberian Sun



HyperPatch Development Discussion #0001

Alright, first discussion topic of the sub forum!


Topic Theme: Adding full support for more than two houses into the game engine.

Ok then, now how should i go about coding this up? Remember this includes everything that is house related, Loading Screens, Sidebars, EVA Speech and so on. There are many ways to do so, but i want to hear what works best for the modders themselfs! smile.gif

Remember to think simple, while try to expanded as many hardcoded problems as we can. I can add new INI keys to HouseTypes, so if you wish, you can suggest a full list of keys to be definable on the HouseType in the INI.

Have fun and remember, its just a game at the end of the day, dont take it too seriously!

Basically anything goes here, as long as your polite and respectful to peoples views and to myself, i wont take action towards you like deleting your posts or even getting you banned from the Tiberium Web forums itself if it has to come to that. I want to lay them rules down in the first post, and i hope people stick to this.

-Hyper

This post has been edited by CCHyper: Aug 3 2009, 12:12 AM


--------------------
Go to the top of the page
 
: | +Quote Post
 
Start new topic
Replies
SeekSomethingNew
post Jul 30 2009, 01:19 PM
Post #2

Stealth Tank
Group Icon

Group: Members
Posts: 1,025
Joined: 31-October 06
Member No.: 208
Alliance: GDI
Favorite game: Tiberian Sun



QUOTE (Lin Kuei Ominae @ Jul 29 2009, 11:16 PM) *
I think it would be even more useful to be able to change the different text lines too. e.g.

HouseType.LoadingScreenTextLine1=Analyzing Combat Zone Topography...
HouseType.LoadingScreenTextLine2=Compensating for Ambient Light Values...
HouseType.LoadingScreenTextLine3=Compiling Wartime Conventions...
HouseType.LoadingScreenTextLine4=Gathering Intel on involved Factions...
HouseType.LoadingScreenTextLine5=Creating theories on likely enemy plan...
HouseType.LoadingScreenTextLine6=Secondary check of combat zone...
HouseType.LoadingScreenTextLine7=Deploying forces to combat zone...
HouseType.LoadingScreenTextLine8=Final analysis of outcome...

This can be done, though i would have to limit the strings to abotu 64 char only, to save hassle on small loading screens.


QUOTE (Lin Kuei Ominae @ Jul 29 2009, 11:16 PM) *
Maybe even allow to specifiy a certain graphic file, so you can have some kind of animated loading screen, e.g. with a progress bar instead of text.

Now this would be hard to do, allowing PCX, SHP and/or VQA support on loading screens would require a lot of code, but ill keep a note of it.

A progress bar could be done by usingthe code the online game dialog uses.


QUOTE (Lin Kuei Ominae @ Jul 29 2009, 11:16 PM) *
A key for the position of the text could be also useful, so the loading screen status window isn't fixed to the right side. e.g.

HouseType.LoadingScreenTextXY=
545,245

This is a good idea, ill add this, shoudl be simple too from what i have seen, though something more like HouseType.LoadingScreenText1XY=, HouseType.LoadingScreenText2XY= and so on would be much better.


QUOTE (Lin Kuei Ominae @ Jul 29 2009, 11:16 PM) *
How about moving the Veteran factors from General to the Houses. So Nod could gain more speed when veteran than GDI, but GDI a bit more firepower etc.

Did RA2/YR have something like this? If so does it work well? I might be able to copy the code over smile.gif


QUOTE (Lin Kuei Ominae @ Jul 29 2009, 11:16 PM) *
Pilot,Crew,Technician,Engineer,Disguise and Paratrooper too. So each Side can have different escaping infantry from destroyed buildings/units.

I cant believe i missed these! Of course ill add these, so how about this too?

HouseType.BuildingType.CrewTypeA=[UnitType or InfantryType, 8 char str]
HouseType.BuildingType.CrewTypeB=[UnitType or InfantryType, 8 char str]

Would give you a nice MCV or E2 (random choice) when the building is destroyed smile.gif

And then if you want to customise a certain building, you would have...

BuildingType.CrewTypeA=[UnitType or InfantryType, 8 char str]

BuildingType.CrewTypeB=[UnitType or InfantryType, 8 char str]


QUOTE (Lin Kuei Ominae @ Jul 29 2009, 11:16 PM) *
And while you move already BaseUnit, you could move RepairBay,HarvesterUnit and PadAircraft too. (though i'm not sure if PadAircraft is necessary as the Nod aircraft works fine even if the original entry says PadAircraft=ORCA,ORCAB without mentioning any Nod aircraft)

I can move these too, no problem!

Note though, PadAircraft= is ONLY used when a BuildingType what acts as a helipad has HoverPad=true on its section, and then still, it will ONLY take the first value from PadAircraft= and place this AircraftType on the helipad once it is constructed.


QUOTE (Orac @ Jul 30 2009, 06:31 AM) *
Oh shi-
this is all beautiful.

Orly?


QUOTE (^Rampastein @ Jul 30 2009, 07:23 AM) *
If MultiplayerAICM gets moved I think it'd be useful to move also the global difficulty sections ([Easy], [Normal], [Difficult]), which give much more control for the AI's difficulty than MultiplayerAICM.

This is indeed a idea, but i dont want to go that far into the AI yet, is amessy web tongue.gif


QUOTE (^Rampastein @ Jul 30 2009, 07:23 AM) *
Or, did the difficulty keys already work with Houses? I have a little "flashback" how I once gave [GDI] Cost = 0.5, but I don't remember if it worked in-game or not (it works in RA1).

Do you think you could test these for me? That i would know if i have to work on these...


QUOTE (Bittah Commander @ Jul 30 2009, 11:21 AM) *
In fact I actually think it might be even more beneficial if PadAircraft could be assigned to the building even; that way 1 house could have multiple helipads that all come with a different aircraft. It'd also be nice if modders would be able to make certain aircraft only able to land on certain helipads...

I have plans for this on Building Types, BuildingType.PadAircraftA=[AircraftType, 8 char str] and BuildingType.PadAircraftB=[AircraftType, 8 char str].

And doesnt Dock= control what a TechnoType can land/dock with?


QUOTE (Bittah Commander @ Jul 30 2009, 11:21 AM) *
Making aircraft able to take off and land not vertically would also be nice, but I'm guessing that'd require you to make a new locomotor.

I remember VK working on something like this in NPatch, it dont require a new locomotor, but its a lot of work...


QUOTE (Bittah Commander @ Jul 30 2009, 11:21 AM) *
Anyway, about the menu/loading screen resolutions; how about adding support for 1 wide-screen resolution as well (I'd suggest 1280x800)?

Ill think about it...


--------------------
Go to the top of the page
 
: | +Quote Post

Posts in this topic
- CCHyper   #0001 -- ThirdSide And More...   Jul 28 2009, 05:33 PM
- - Aro   I'm not entirely sure on what to say as I...   Jul 28 2009, 05:42 PM
- - CCHyper   Well, allowing sidebars for a infinite amount of h...   Jul 28 2009, 05:48 PM
- - Bittah Commander   In my opinion the most practical way to do this wo...   Jul 28 2009, 06:16 PM
- - Python   A new mod ... excellent! Can't wait to ...   Jul 28 2009, 06:26 PM
- - CCHyper   Python, its not a mod HyperPatch is unofficial p...   Jul 28 2009, 06:52 PM
- - Python   Ah I see.   Jul 28 2009, 06:56 PM
- - Team Black   this is a good idea. Personally I think side-speci...   Jul 28 2009, 09:16 PM
- - Aro   A simple tag for the .ini files to specify a certa...   Jul 29 2009, 01:04 AM
|- - ^Rampastein   I agree with Bittah, making it work like it alread...   Jul 29 2009, 09:17 AM
|- - Lin Kuei Ominae   Bittah's Idea to expand the Houses and move so...   Jul 29 2009, 01:50 PM
- - CCHyper   QUOTE (Bittah Commander @ Jul 28 2009, 07...   Jul 29 2009, 02:20 PM
|- - ^Rampastein   QUOTE (CCHyper @ Jul 29 2009, 05:20 PM) T...   Jul 29 2009, 03:41 PM
|- - Bittah Commander   QUOTE (CCHyper @ Jul 29 2009, 04:20 PM) H...   Jul 29 2009, 07:23 PM
|- - Lin Kuei Ominae   QUOTE (CCHyper @ Jul 29 2009, 02:20 PM) H...   Jul 29 2009, 10:16 PM
|- - ^Rampastein   QUOTE (Lin Kuei Ominae @ Jul 30 2009, 01...   Jul 30 2009, 06:23 AM
- - CCHyper   QUOTE (^Rampastein @ Jul 29 2009, 04:41 P...   Jul 29 2009, 07:12 PM
- - CCHyper   Ill add support for 768 only, any higher and the c...   Jul 29 2009, 09:04 PM
- - Orac   Oh shi- this is all beautiful.   Jul 30 2009, 05:31 AM
- - Bittah Commander   Yes, it works... But it doesn't just affect th...   Jul 30 2009, 10:21 AM
|- - Lin Kuei Ominae   QUOTE (CCHyper @ Jul 30 2009, 02:19 PM) D...   Jul 30 2009, 03:06 PM
- - Bittah Commander   Dock= only assigns a preferred docking building, b...   Jul 30 2009, 02:59 PM
- - CCHyper   QUOTE (Bittah Commander @ Jul 30 2009, 03...   Jul 30 2009, 04:24 PM
- - Bittah Commander   On a side-note, would it be possible to make it so...   Jul 30 2009, 04:49 PM
|- - Lin Kuei Ominae   I'm so glad that my beloved tibweb is more act...   Jul 30 2009, 09:53 PM
- - CCHyper   QUOTE (Bittah Commander @ Jul 30 2009, 05...   Jul 31 2009, 11:30 AM
- - Bittah Commander   QUOTE (CCHyper @ Jul 31 2009, 01:30 PM) S...   Jul 31 2009, 02:31 PM
- - CCHyper   QUOTE (Bittah Commander @ Jul 31 2009, 03...   Jul 31 2009, 04:43 PM
- - Dubzac   i think this stuff above is fantastic. but try and...   Aug 14 2009, 10:25 PM


Reply to this topicStart new topic
3 User(s) are reading this topic (3 Guests and 0 Anonymous Users)
0 Members:

 

Lo-Fi Version Time is now: 12th May 2025 - 04:40 PM


XGhozt.com