HowTo/Build a Car for Traffic (mesh library version)

From TrainzOnline
< HowTo(Difference between revisions)
Jump to: navigation, search
(layout change)
Line 2: Line 2:
 
One way to make a mesh library involves pasting existing textures from single assets together to make one big texture and then re-mapping the one texture on to multiple meshes.
 
One way to make a mesh library involves pasting existing textures from single assets together to make one big texture and then re-mapping the one texture on to multiple meshes.
  
Take, for example, this texture for some Ford vehicles.<br><br>
+
Take, for example, this texture for some Ford vehicles.
 +
 
 +
 
 
[[Image:misc_fords1.jpg]]
 
[[Image:misc_fords1.jpg]]
  
Line 27: Line 29:
 
  username          "Ford Transits and Escorts"  ...''name entered by me into CCP
 
  username          "Ford Transits and Escorts"  ...''name entered by me into CCP
 
  kind              "mesh"      ...................''must be kind mesh, set by me in CCP''
 
  kind              "mesh"      ...................''must be kind mesh, set by me in CCP''
  trainz-build      3.3          ...................''trains build set by CCP''
+
  trainz-build      3.3          ...................''trainz build set by CCP''
 
  mesh-table            .............................''must have a mesh table with any mesh in the asset as default''         
 
  mesh-table            .............................''must have a mesh table with any mesh in the asset as default''         
 
  {
 
  {
Line 64: Line 66:
 
Each car has its own config.txt which calls the appropriate meshes from the library.
 
Each car has its own config.txt which calls the appropriate meshes from the library.
  
Example config.txt:-<br>
+
Example config.txt:-
 +
 
 +
 
 
  kuid                    <kuid:XXXXX:YYYY> ...........''kuid set by CCP for a new asset''
 
  kuid                    <kuid:XXXXX:YYYY> ...........''kuid set by CCP for a new asset''
 
  username                "Carz Ford Escort Van"    ...''name entered by me into CCP
 
  username                "Carz Ford Escort Van"    ...''name entered by me into CCP

Revision as of 11:28, 1 June 2011

Contents

Build the Texture

One way to make a mesh library involves pasting existing textures from single assets together to make one big texture and then re-mapping the one texture on to multiple meshes.

Take, for example, this texture for some Ford vehicles.


Misc fords1.jpg


As you can see there are eight (8) vehicles pictured on the one texture. Out of these we have managed to get 12 separate models into the game; some by variations in mesh (short or long wheelbase) and some by combining mapping from two colours of the one vehicle to get a two tone effect.

Re-mapping may seem to be tedious, but once one car type is done, the subsequent ones are easy. Just move the mapping to the next image on the texture.

It is also possible to get some dark colours by duplicating a light coloured model and setting the diffuse and ambient colour settings to a lower level.

Mesh Library

All the meshes and textures are put together in the one mesh library asset. So, in the example, we have 12 meshes referencing the one texture, all in the one asset. Separate textures and meshes for night lighting effects are included as well.

To get the game to display each car individually, separate assets are created for each one. These assets only contain a config.txt file and a thumbnail image. They call the mesh library to display the correct model, with any night light effects.

Our mesh library asset contains all the IM meshes, texture.txt's, and texture images as well as a thumbnail and, of course, its config.txt file.

Mesh Library Config.txt

The mesh library asset's config.txt should look like the following:-

kuid               <kuid:XXXXXX:ZZZZ>   ...........kuid set by CCP
username           "Ford Transits and Escorts"  ...name entered by me into CCP
kind               "mesh"       ...................must be kind mesh, set by me in CCP
trainz-build       3.3          ...................trainz build set by CCP
mesh-table            .............................must have a mesh table with any mesh in the asset as default         
{
  default
  {
    mesh           "escort10.im"
    auto-create    1
  }
}
category-class     "HM"           .................sets catagory-class as mesh asset
category-era       "1970s;1980s"
category-region    "AU;UK"
description        "Ford Carz for Traffic etc."
author             "MyName"
license            "Blah blah"
contact-email      "me@braenet.com.au"
thumbnails
{
  0
  {
    image          "screenie.jpg"   ...............thumbnail image of one or more of the models
    width          240
    height         180
  }
}


The Car Assets

As already stated, we use separate assets to call each of the cars from the mesh library. This way we have an asset that can be placed into a route or region to act as traffic on the roads.

Each car asset is a simple "stub" with no active bits in it. All that's needed is the config.txt file and an identifying thumbnail image.

Car Asset Config.txt

Each car has its own config.txt which calls the appropriate meshes from the library.

Example config.txt:-


kuid                    <kuid:XXXXX:YYYY> ...........kuid set by CCP for a new asset
username                "Carz Ford Escort Van"    ...name entered by me into CCP
kind                    "scenery"    ................must be kind scenery, entered by me in CCP
trainz-build            3.3      ....................trainz build set by CCP
mesh-table   ........................................seeing as there is no mesh in the "stub" asset, the
                                                      mesh-table must be populated by editing in NotePad
{
  default
  {
    mesh-asset          <kuid:XXXXX:ZZZZ>    ........the kuid of the mesh library asset
    auto-create         1
    mesh                "escort_van.im"      ........the mesh in the library asset for this car
  }
  default-night      ................................add this container if you have a night lighting mesh 
  {
    mesh                "escort_van_night.im"   .....night lights mesh
    night-mesh-base     "default"
    mesh-asset          <kuid:XXXXX:ZZZZ>    ........the kuid of the mesh library asset
  }
}
height-range            -10,50    ...................this tag is recommended
nightmode               "car"     ...................the new nightmode tag value for traffic
trackside               0.01      ...................new tag for asset to run on roads
category-class          "VL"
category-era            "1970s;1980s"
category-region         "AU;UK"
description             "Ford Escort Van for Traffic etc"
author                  "MyName"
license                 "Blah blah etc"
contact-email           "me@braenet.com.au"
thumbnails
{
  0
  {
    image               "$screenshot$.jpg"
    width               240
    height              180
  }
}
kuid-table
{
  0                     <kuid:XXXXX:ZZZZ>  ...........the kuid of the mesh library asset
}

Commit the car and mesh library into the game and ensure there are no errors.

This mesh library based car is now ready to be added to a route or region to become live traffic. (TBD howto add carz to a route and enable traffic)

Return to How To Index

HowToGuides

Personal tools