78 lines
2.4 KiB
C++
78 lines
2.4 KiB
C++
/*
|
|
* Original work: Copyright (c) 2014, Oculus VR, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* RakNet License.txt file in the licenses directory of this source tree. An additional grant
|
|
* of patent rights can be found in the RakNet Patents.txt file in the same directory.
|
|
*
|
|
*
|
|
* Modified work: Copyright (c) 2018, SLikeSoft UG (haftungsbeschränkt)
|
|
*
|
|
* This source code was modified by SLikeSoft. Modifications are licensed under the MIT-style
|
|
* license found in the license.txt file in the root directory of this source tree.
|
|
*/
|
|
|
|
//
|
|
// MainPage.xaml.cpp
|
|
// Implementation of the MainPage class.
|
|
//
|
|
|
|
#include "pch.h"
|
|
#include "MainPage.xaml.h"
|
|
|
|
using namespace RakNet_WindowsStore8_VS2012;
|
|
|
|
using namespace Platform;
|
|
using namespace Windows::Foundation;
|
|
using namespace Windows::Foundation::Collections;
|
|
using namespace Windows::UI::Xaml;
|
|
using namespace Windows::UI::Xaml::Controls;
|
|
using namespace Windows::UI::Xaml::Controls::Primitives;
|
|
using namespace Windows::UI::Xaml::Data;
|
|
using namespace Windows::UI::Xaml::Input;
|
|
using namespace Windows::UI::Xaml::Media;
|
|
using namespace Windows::UI::Xaml::Navigation;
|
|
|
|
// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
|
|
|
|
#include "RakPeerInterface.h"
|
|
#include "RakSleep.h"
|
|
#include "MessageIdentifiers.h"
|
|
using namespace SLNet;
|
|
#define DEFAULT_SERVER_PORT 61111
|
|
#define DEFAULT_SERVER_ADDRESS "natpunch.jenkinssoftware.com"
|
|
|
|
MainPage::MainPage()
|
|
{
|
|
InitializeComponent();
|
|
|
|
|
|
// #error "add raknet init code, what happened to windows phone?"
|
|
|
|
RakPeerInterface *rakPeer = RakPeerInterface::GetInstance();
|
|
SocketDescriptor sd;
|
|
StartupResult sr = rakPeer->Startup(1, &sd, 1);
|
|
assert(sr==RAKNET_STARTED);
|
|
ConnectionAttemptResult car = rakPeer->Connect(DEFAULT_SERVER_ADDRESS, DEFAULT_SERVER_PORT, 0, 0);
|
|
assert(car==CONNECTION_ATTEMPT_STARTED);
|
|
RakSleep(1000);
|
|
Packet *packet;
|
|
packet=rakPeer->Receive();
|
|
if (packet)
|
|
{
|
|
RakAssert(packet->data[0]==ID_CONNECTION_REQUEST_ACCEPTED);
|
|
}
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// Invoked when this page is about to be displayed in a Frame.
|
|
/// </summary>
|
|
/// <param name="e">Event data that describes how this page was reached. The Parameter
|
|
/// property is typically used to configure the page.</param>
|
|
void MainPage::OnNavigatedTo(NavigationEventArgs^ e)
|
|
{
|
|
(void) e; // Unused parameter
|
|
}
|