work-cheatsheet

A cheatsheet for my dang job.

Contents

  1. Integrating Changelists
  2. Useful Command Line Arguments
  3. Launch URLs
  4. Native Script Classes

Integrating Changelists

  1. Submit to development branch.
  2. Switch to release branch.
  3. Right-click submitted changelist and select Merge/Integrate....
  4. Select the appropriate branch mapping.
  5. Accept the merge.
  6. Interactively resolve each file in the pending changelist.
  7. Test the release build.
  8. Submit the pending changelist with the following description:
Source_Branch_Name -> Target_Branch_Name [CL <source changelist number>]
<source changelist description>

Useful Command Line Arguments

Command Description
-windowed Launches the game windowed
-log Shows the log window.

Launch URLs

URL Command Description
DisplayNameDialog Displays the name dialog for supported gametypes.
HideMenuOnMapLoad
RoleName=<role> Sets the client's role.

Native Script Classes

When declaring a script class as native, it must be implemented in native code. For Actors, start the class with A. For Objects, start the class with U.

/** MyNativePawn.uc */
class MyNativePawn extends Pawn
  native;
IMPLEMENT_CLASS(AMyNativePawn);

void AMyNativePawn::foo()
{
  // Native function body.
}