changed file section

This commit is contained in:
yoncodes
2025-10-29 14:13:47 -04:00
parent 1badd8cb4f
commit 397c34bec1
1568 changed files with 3068 additions and 3575 deletions

View File

@@ -0,0 +1,20 @@
use actix_web::{HttpResponse, Result, put, web};
use bd2::proto::proto_net::ActiveMapRequest;
use crypto::network::parse_packet;
use gameserver::logic::game::active::active_map;
use sqlx::SqlitePool;
#[put("ActiveMap")]
async fn active_map_handler(
pool: web::Data<SqlitePool>,
body: String,
user_id: web::ReqData<i64>,
) -> Result<HttpResponse> {
let uid = *user_id;
let req = parse_packet::<ActiveMapRequest>("ActiveMap", &body).map_err(|e| {
tracing::warn!("Failed to parse ActiveMap: {}", e);
actix_web::error::ErrorBadRequest("Invalid packet")
})?;
let response = active_map::handle(&pool, uid, req).await;
Ok(HttpResponse::Ok().json(response))
}

View File

@@ -0,0 +1 @@
pub mod active_map;