mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-25 19:04:43 +00:00
提交帧同步DEMO
This commit is contained in:
parent
93b11ca66a
commit
3a345ab966
38
JisolGameServer/GFrameDemo/.gitignore
vendored
Normal file
38
JisolGameServer/GFrameDemo/.gitignore
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
target/
|
||||
!.mvn/wrapper/maven-wrapper.jar
|
||||
!**/src/main/**/target/
|
||||
!**/src/test/**/target/
|
||||
|
||||
### IntelliJ IDEA ###
|
||||
.idea/modules.xml
|
||||
.idea/jarRepositories.xml
|
||||
.idea/compiler.xml
|
||||
.idea/libraries/
|
||||
*.iws
|
||||
*.iml
|
||||
*.ipr
|
||||
|
||||
### Eclipse ###
|
||||
.apt_generated
|
||||
.classpath
|
||||
.factorypath
|
||||
.project
|
||||
.settings
|
||||
.springBeans
|
||||
.sts4-cache
|
||||
|
||||
### NetBeans ###
|
||||
/nbproject/private/
|
||||
/nbbuild/
|
||||
/dist/
|
||||
/nbdist/
|
||||
/.nb-gradle/
|
||||
build/
|
||||
!**/src/main/**/build/
|
||||
!**/src/test/**/build/
|
||||
|
||||
### VS Code ###
|
||||
.vscode/
|
||||
|
||||
### Mac OS ###
|
||||
.DS_Store
|
49
JisolGameServer/GFrameDemo/pom.xml
Normal file
49
JisolGameServer/GFrameDemo/pom.xml
Normal file
@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>org.example</groupId>
|
||||
<artifactId>JisolGameServer</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<groupId>cn.jisol</groupId>
|
||||
<artifactId>GFrameDemo</artifactId>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>8</maven.compiler.source>
|
||||
<maven.compiler.target>8</maven.compiler.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>cn.jisol</groupId>
|
||||
<artifactId>JNGame</artifactId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.code.gson</groupId>
|
||||
<artifactId>gson</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.baomidou</groupId>
|
||||
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||||
<version>3.5.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.h2database</groupId>
|
||||
<artifactId>h2</artifactId>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>mysql</groupId>
|
||||
<artifactId>mysql-connector-java</artifactId>
|
||||
<scope>runtime</scope>
|
||||
<version>8.0.30</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
@ -0,0 +1,19 @@
|
||||
package cn.jisol.ngame.frame;
|
||||
|
||||
import cn.jisol.ngame.util.spring.SpringBeanUtils;
|
||||
import org.mybatis.spring.annotation.MapperScan;
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.retry.annotation.EnableRetry;
|
||||
import org.springframework.scheduling.annotation.EnableScheduling;
|
||||
|
||||
@EnableRetry
|
||||
@SpringBootApplication
|
||||
@EnableScheduling
|
||||
public class JNFrameApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringBeanUtils.context = SpringApplication.run(JNFrameApplication.class);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package cn.jisol.ngame.frame.listener;
|
||||
|
||||
import cn.hutool.core.util.ClassUtil;
|
||||
import cn.jisol.ngame.listener.InitNGameRPCListener;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import java.util.Set;
|
||||
|
||||
@Component
|
||||
public class InitNGameListener extends InitNGameRPCListener {
|
||||
@Override
|
||||
public Set<Class<?>> getScanPackage() {
|
||||
return ClassUtil.scanPackage("cn.jisol");
|
||||
}
|
||||
}
|
@ -0,0 +1,32 @@
|
||||
package cn.jisol.ngame.frame.network;
|
||||
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.web.socket.config.annotation.EnableWebSocketMessageBroker;
|
||||
import org.springframework.web.socket.config.annotation.StompEndpointRegistry;
|
||||
import org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer;
|
||||
import org.springframework.web.socket.server.standard.ServerEndpointExporter;
|
||||
|
||||
@Configuration
|
||||
@EnableWebSocketMessageBroker
|
||||
public class NSocketConfigurer implements WebSocketMessageBrokerConfigurer {
|
||||
|
||||
/**
|
||||
* 添加一个服务端点,来接收客户端的连接
|
||||
* @param registry
|
||||
*/
|
||||
@Override
|
||||
public void registerStompEndpoints(StompEndpointRegistry registry) {
|
||||
registry.addEndpoint("/websocket").setAllowedOrigins("*");
|
||||
}
|
||||
|
||||
/**
|
||||
* 开启WebSocket支持
|
||||
* @return
|
||||
*/
|
||||
@Bean
|
||||
public ServerEndpointExporter serverEndpointExporter() {
|
||||
return new ServerEndpointExporter();
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,52 @@
|
||||
package cn.jisol.ngame.frame.network;
|
||||
|
||||
import cn.jisol.ngame.NSystem;
|
||||
import cn.jisol.ngame.frame.network.client.GClient;
|
||||
import cn.jisol.ngame.network.JNetwork;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Controller;
|
||||
|
||||
import javax.websocket.OnClose;
|
||||
import javax.websocket.OnMessage;
|
||||
import javax.websocket.OnOpen;
|
||||
import javax.websocket.Session;
|
||||
import javax.websocket.server.ServerEndpoint;
|
||||
import java.io.InputStream;
|
||||
import java.util.Map;
|
||||
import java.util.Objects;
|
||||
import java.util.concurrent.ConcurrentHashMap;
|
||||
|
||||
@ServerEndpoint(
|
||||
value = "/websocket"
|
||||
)
|
||||
@Controller
|
||||
public class WebSocket {
|
||||
|
||||
public static final Map<String, GClient> CLIENTS = new ConcurrentHashMap<>();
|
||||
|
||||
@OnOpen
|
||||
public void onOpen(Session session){
|
||||
|
||||
GClient client = new GClient(session);
|
||||
CLIENTS.put(session.getId(), client);
|
||||
|
||||
NSystem.Log("连接WebSocket成功");
|
||||
|
||||
}
|
||||
|
||||
@OnMessage
|
||||
public void onMessage(Session session, InputStream inputStream){
|
||||
|
||||
NSystem.Log("收到请求");
|
||||
|
||||
GClient client = CLIENTS.get(session.getId());
|
||||
JNetwork.onMessage(inputStream,client,client);
|
||||
|
||||
}
|
||||
|
||||
@OnClose
|
||||
public void onClose(Session session){
|
||||
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,39 @@
|
||||
package cn.jisol.ngame.frame.network.client;
|
||||
|
||||
import cn.jisol.ngame.client.QueueNClient;
|
||||
|
||||
import javax.websocket.Session;
|
||||
import java.io.IOException;
|
||||
|
||||
public class GClient extends QueueNClient {
|
||||
|
||||
public Session session;
|
||||
|
||||
public GClient(Session session){
|
||||
super(session.getId());
|
||||
this.session = session;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onMessage(byte[] bytes) {
|
||||
if (session.isOpen()){
|
||||
try {
|
||||
session.getBasicRemote().sendObject(bytes);
|
||||
} catch (Exception ignored) {}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onClose() {
|
||||
if (session.isOpen()){
|
||||
try {
|
||||
session.close();
|
||||
} catch (IOException ignored) {}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isOpen() {
|
||||
return session.isOpen();
|
||||
}
|
||||
}
|
@ -1 +1 @@
|
||||
Subproject commit 87cdbc5b91be3f46c06c6a647ed9cf3525a009eb
|
||||
Subproject commit 4a1172acf2b203d0400931e7914a87520a8a02ff
|
@ -17,6 +17,7 @@
|
||||
|
||||
<modules>
|
||||
<module>Main</module>
|
||||
<module>GFrameDemo</module>
|
||||
</modules>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user