forked from TheOfficialFloW/VitaShell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
netcheck_dialog.c
74 lines (57 loc) · 2.02 KB
/
netcheck_dialog.c
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
/*
VitaShell
Copyright (C) 2015-2018, TheFloW
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "main.h"
#include "netcheck_dialog.h"
static int netcheck_dialog_running = 0;
int initNetCheckDialog(int mode, int timeoutUs) {
if (netcheck_dialog_running)
return -1;
SceNetCheckDialogParam param;
sceNetCheckDialogParamInit(¶m);
SceNetAdhocctlGroupName groupName;
memset(groupName.data, 0, SCE_NET_ADHOCCTL_GROUPNAME_LEN);
param.groupName = &groupName;
memcpy(¶m.npCommunicationId.data, VITASHELL_TITLEID, 9);
param.npCommunicationId.term = '\0';
param.npCommunicationId.num = 0;
param.mode = mode;
param.timeoutUs = timeoutUs;
int res = sceNetCheckDialogInit(¶m);
if (res >= 0) {
netcheck_dialog_running = 1;
}
return res;
}
int isNetCheckDialogRunning() {
return netcheck_dialog_running;
}
int updateNetCheckDialog() {
if (!netcheck_dialog_running)
return NETCHECK_DIALOG_RESULT_NONE;
SceCommonDialogStatus status = sceNetCheckDialogGetStatus();
if (status == NETCHECK_DIALOG_RESULT_FINISHED) {
SceNetCheckDialogResult result;
memset(&result, 0, sizeof(SceNetCheckDialogResult));
sceNetCheckDialogGetResult(&result);
if (result.result == SCE_COMMON_DIALOG_RESULT_OK) {
status = NETCHECK_DIALOG_RESULT_CONNECTED;
} else {
status = NETCHECK_DIALOG_RESULT_NOT_CONNECTED;
}
sceNetCheckDialogTerm();
netcheck_dialog_running = 0;
}
return status;
}