1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
#include "TcpCommunication.h"
#include "HLSLTypeAliases.h" #include "Runtime/Networking/Public/Networking.h" #include "Interfaces/IPv4/IPv4Address.h" #include "UObject/Object.h"
ATcpCommunication::ATcpCommunication(): ListenerSocket(nullptr), ConnectionSocket(nullptr) {
PrimaryActorTick.bCanEverTick = true;
SocketClient = nullptr; }
void ATcpCommunication::BeginPlay() { Super::BeginPlay();
const FString IPStr = "127.0.0.1";
const int32 port = 1081;
bool success = SocketCreate(IPStr, port);
}
void ATcpCommunication::EndPlay(const EEndPlayReason::Type EndPlayReason) { Super::EndPlay(EndPlayReason); UWorld* World = GetWorld(); GetWorld()->GetTimerManager().ClearTimer(TCPConnectionListenerTimerHandle); GetWorld()->GetTimerManager().ClearTimer(TCPSocketListenerTimerHandle);
if (ConnectionSocket != nullptr) { ConnectionSocket->Close(); } if (ListenerSocket != nullptr) { ListenerSocket->Close(); } if (SocketClient) { SocketClient->Close(); ISocketSubsystem::Get(PLATFORM_SOCKETSUBSYSTEM)->DestroySocket(SocketClient); } }
void ATcpCommunication::Tick(float DeltaTime) { Super::Tick(DeltaTime);
FString Message = "HELLO";
bool bReceive = false;
FString Receivemessage = "";
SocketReceive(bReceive,Receivemessage);
SocketSend("HelloFromUnreal"); }
bool ATcpCommunication::SocketCreate(FString IPStr, int32 port) { FIPv4Address::Parse(IPStr,ip); TSharedRef<FInternetAddr> addr = ISocketSubsystem::Get(PLATFORM_SOCKETSUBSYSTEM)->CreateInternetAddr(); addr->SetIp(ip.Value); addr->SetPort(port);
SocketClient = ISocketSubsystem::Get(PLATFORM_SOCKETSUBSYSTEM)->CreateSocket(NAME_Stream,TEXT("default"),false); if (SocketClient->Connect(*addr)) { GEngine->AddOnScreenDebugMessage(1,2.0f,FColor::Green,TEXT("Connect Success!"));
UE_LOG(LogTemp,Warning,TEXT("Connect Success!"));
return true; } GEngine->AddOnScreenDebugMessage(1, 2.0f, FColor::Green, TEXT("Connect failed!"));
UE_LOG(LogTemp, Warning, TEXT("Connect failed!"));
return false; }
void ATcpCommunication::SocketSend(FString meesage) { TCHAR *seriallizedChar = meesage.GetCharArray().GetData();
int32 size = FCString::Strlen(seriallizedChar) + 1;
int32 sent = 0; if (SocketClient->Send((uint8*)TCHAR_TO_UTF8(seriallizedChar), size, sent)) { GEngine->AddOnScreenDebugMessage(1, 2.0f, FColor::Green, TEXT("_____Send Succ!")); UE_LOG(LogTemp, Warning, TEXT("_____Send Succ!")); } else { GEngine->AddOnScreenDebugMessage(1, 2.0f, FColor::Green, TEXT("_____Send failed!")); UE_LOG(LogTemp, Warning, TEXT("_____Send failed!")); } }
void ATcpCommunication::SocketReceive(bool& bReceive, FString& recvMessage) { recvMessage = ""; bReceive = false; if (!SocketClient) { return; } TArray<uint8> ReceiveData; uint32 size; uint8 element = 0; while (SocketClient->HasPendingData(size)) { ReceiveData.Init(element,FMath::Min(size,65507u)); int32 read = 0; SocketClient->Recv(ReceiveData.GetData(),ReceiveData.Num(),read); } if (ReceiveData.Num()<=0) { return; } FString log = "Total Data read!num:" + FString::FromInt(ReceiveData.Num()<=0);
GEngine->AddOnScreenDebugMessage(1, 2.0f, FColor::Green, log);
UE_LOG(LogTemp, Warning, TEXT("Recv log: %s"), *log);
const FString ReceiveUE4String = StringFromBinaryArray(ReceiveData);
log = "Server:" + ReceiveUE4String; bReceive = true; }
FString ATcpCommunication::StringFromBinaryArray(TArray<uint8> BinaryArray) { return FString(ANSI_TO_TCHAR(reinterpret_cast<const char*>(BinaryArray.GetData()))); }
|