Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 00041 00042 00043 00044 00045 00046 00047 00048 00049 00050 00051 00052 00053 00054 00055 00056 00057 00058 00059 00060 00061 00062 00063 00064 00065 00066 00067 00068 00069 00070 00071 00072 00073 00074 00075 00076 00077 00078 00079 00080 00081 00082 00083 00084 00085 00086 00087 00088 00089 00090 00091 00092 00093 00094 00095 00096 00097 00098 00099 00100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 00121 00122 00123 00124 00125 00126 00127 00128 00129 00130 00131 00132 00133 00134 00135 00136 00137 00138 00139 00140 00141 00142 00143 00144 00145 00146 00147 00148 00149 00150 00151 00152 00153 00154 00155 00156 |
/** * Copyright 1998-2008 Epic Games, Inc. All Rights Reserved. */ /** * This action joins an online game based upon the search object that * is bound to the UI list */ class UIAction_JoinOnlineGame extends UIAction native(inherit) dependson(OnlineGameSearch); /** Holds the game we are currently trying to join */ var OnlineGameSearchResult PendingGameJoin; /** Temporary var for accessing actor functions */ var WorldInfo CachedWorldInfo; /** Whether the latent action is done */ var bool bIsDone; /** Whether there was an error or not */ var bool bResult; // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) /** * Performs the join process by kicking off the async join for the specified game * * @param ControllerId the player joining * @param GameToJoin the search results for the server to join * @param WorldInfo the world info in case an actor is needed for iteration */ event JoinOnlineGame(byte ControllerId,OnlineGameSearchResult GameToJoin,WorldInfo InWorldInfo) { local OnlineSubsystem OnlineSub; local OnlineGameInterface GameInterface; if (GameToJoin.GameSettings != None) { // Figure out if we have an online subsystem registered OnlineSub = class'GameEngine'.static.GetOnlineSubsystem(); if (OnlineSub != None) { // Grab the game interface to verify the subsystem supports it GameInterface = OnlineSub.GameInterface; if (GameInterface != None) { CachedWorldInfo = InWorldInfo; PendingGameJoin = GameToJoin; // Set the delegate for notification GameInterface.AddJoinOnlineGameCompleteDelegate(OnJoinGameComplete); // Start the async task if (!GameInterface.JoinOnlineGame(ControllerId,GameToJoin)) { OnJoinGameComplete(false); } } else { WarnInternal("OnlineSubsystem does not support the game interface. Can't join game"); } } else { WarnInternal("No OnlineSubsystem present. Can't join game"); } } else { OnJoinGameComplete(false); } } /** * Handles the notification that the join completed. If successful, the session * is joined, otherwise an error is shown * * @param bWasSuccessful whether the async task succeeded or not */ function OnJoinGameComplete(bool bWasSuccessful) { local OnlineSubsystem OnlineSub; local string URL; bIsDone = true; bResult = bWasSuccessful; // Figure out if we have an online subsystem registered OnlineSub = class'GameEngine'.static.GetOnlineSubsystem(); if (OnlineSub != None && OnlineSub.GameInterface != None) { if (bWasSuccessful) { // Get the platform specific information if (OnlineSub.GameInterface.GetResolvedConnectString(URL)) { // Call the game specific function to appending/changing the URL URL = BuildJoinURL(URL); LogInternal("Resulting url is ("$URL$")"); // Get the resolved URL and build the part to start it CachedWorldInfo.ConsoleCommand(URL); } else { bResult = false; } } // Remove the delegate from the list OnlineSub.GameInterface.ClearJoinOnlineGameCompleteDelegate(OnJoinGameComplete); } CachedWorldInfo = None; } /** * Builds the string needed to join a game from the resolved connection: * "open 172.168.0.1" * * NOTE: Overload this method to modify the URL before exec-ing it * * @param ResolvedConnectionURL the platform specific URL information * * @return the final URL to use to open the map */ function string BuildJoinURL(string ResolvedConnectionURL) { return "open "$ResolvedConnectionURL; } defaultproperties { bAutoTargetOwner=True bLatentExecution=True bAutoActivateOutputLinks=False OutputLinks(0)=(LinkDesc="Failure") OutputLinks(1)=(LinkDesc="Success") ObjName="Join Online Game" ObjCategory="Online" Name="Default__UIAction_JoinOnlineGame" ObjectArchetype=UIAction'Engine.Default__UIAction' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |