|
@ -269,39 +269,40 @@ async fn save_character(conn: &mut sqlx::PgConnection, char: &CharacterEntity) - |
|
|
let q = r#"update player_character set
|
|
|
let q = r#"update player_character set
|
|
|
user_account=$1, slot=$2, name=$3, exp=$4, class=$5, section_id=$6, costume=$7, skin=$8, face=$9, head=$10, hair=$11, hair_r=$12,
|
|
|
user_account=$1, slot=$2, name=$3, exp=$4, class=$5, section_id=$6, costume=$7, skin=$8, face=$9, head=$10, hair=$11, hair_r=$12,
|
|
|
hair_g=$13, hair_b=$14, prop_x=$15, prop_y=$16, techs=$17, config=$18, infoboard=$19, guildcard=$20, power=$21, mind=$22, def=$23,
|
|
|
hair_g=$13, hair_b=$14, prop_x=$15, prop_y=$16, techs=$17, config=$18, infoboard=$19, guildcard=$20, power=$21, mind=$22, def=$23,
|
|
|
evade=$24, luck=$25, hp=$26, tp=$27, tech_menu=$28, option_flags=$29
|
|
|
|
|
|
where id=$32;"#;
|
|
|
|
|
|
|
|
|
evade=$24, luck=$25, hp=$26, tp=$27, tech_menu=$28, option_flags=$29, playtime=$30
|
|
|
|
|
|
where id=$31;"#;
|
|
|
sqlx::query(q)
|
|
|
sqlx::query(q)
|
|
|
.bind(char.user_id.0)
|
|
|
|
|
|
.bind(char.slot as i16)
|
|
|
|
|
|
.bind(&char.name)
|
|
|
|
|
|
.bind(char.exp as i32)
|
|
|
|
|
|
.bind(char.char_class.to_string())
|
|
|
|
|
|
.bind(char.section_id.to_string())
|
|
|
|
|
|
.bind(char.appearance.costume as i16)
|
|
|
|
|
|
.bind(char.appearance.skin as i16)
|
|
|
|
|
|
.bind(char.appearance.face as i16)
|
|
|
|
|
|
.bind(char.appearance.head as i16)
|
|
|
|
|
|
.bind(char.appearance.hair as i16)
|
|
|
|
|
|
.bind(char.appearance.hair_r as i16)
|
|
|
|
|
|
.bind(char.appearance.hair_g as i16)
|
|
|
|
|
|
.bind(char.appearance.hair_b as i16)
|
|
|
|
|
|
.bind(char.appearance.prop_x)
|
|
|
|
|
|
.bind(char.appearance.prop_y)
|
|
|
|
|
|
.bind(&char.techs.as_bytes().to_vec())
|
|
|
|
|
|
.bind(&char.config.as_bytes().to_vec())
|
|
|
|
|
|
.bind(String::from_utf16_lossy(&char.info_board.board).trim_matches(char::from(0)))
|
|
|
|
|
|
.bind(&char.guildcard.description)
|
|
|
|
|
|
.bind(char.materials.power as i16)
|
|
|
|
|
|
.bind(char.materials.mind as i16)
|
|
|
|
|
|
.bind(char.materials.def as i16)
|
|
|
|
|
|
.bind(char.materials.evade as i16)
|
|
|
|
|
|
.bind(char.materials.luck as i16)
|
|
|
|
|
|
.bind(char.materials.hp as i16)
|
|
|
|
|
|
.bind(char.materials.tp as i16)
|
|
|
|
|
|
.bind(char.tech_menu.tech_menu.to_vec())
|
|
|
|
|
|
.bind(char.option_flags as i32)
|
|
|
|
|
|
.bind(char.id.0 as i32)
|
|
|
|
|
|
|
|
|
.bind(char.user_id.0) // $1
|
|
|
|
|
|
.bind(char.slot as i16) // $2
|
|
|
|
|
|
.bind(&char.name) // $3
|
|
|
|
|
|
.bind(char.exp as i32) // $4
|
|
|
|
|
|
.bind(char.char_class.to_string()) // $5
|
|
|
|
|
|
.bind(char.section_id.to_string()) // $6
|
|
|
|
|
|
.bind(char.appearance.costume as i16) // $7
|
|
|
|
|
|
.bind(char.appearance.skin as i16) // $8
|
|
|
|
|
|
.bind(char.appearance.face as i16) // $9
|
|
|
|
|
|
.bind(char.appearance.head as i16) // $10
|
|
|
|
|
|
.bind(char.appearance.hair as i16) // $11
|
|
|
|
|
|
.bind(char.appearance.hair_r as i16) // $12
|
|
|
|
|
|
.bind(char.appearance.hair_g as i16) // $13
|
|
|
|
|
|
.bind(char.appearance.hair_b as i16) // $14
|
|
|
|
|
|
.bind(char.appearance.prop_x) // $15
|
|
|
|
|
|
.bind(char.appearance.prop_y) // $16
|
|
|
|
|
|
.bind(&char.techs.as_bytes().to_vec()) // $17
|
|
|
|
|
|
.bind(&char.config.as_bytes().to_vec()) // $18
|
|
|
|
|
|
.bind(String::from_utf16_lossy(&char.info_board.board).trim_matches(char::from(0))) // $19
|
|
|
|
|
|
.bind(&char.guildcard.description) // $20
|
|
|
|
|
|
.bind(char.materials.power as i16) // $21
|
|
|
|
|
|
.bind(char.materials.mind as i16) // $22
|
|
|
|
|
|
.bind(char.materials.def as i16) // $23
|
|
|
|
|
|
.bind(char.materials.evade as i16) // $24
|
|
|
|
|
|
.bind(char.materials.luck as i16) // $25
|
|
|
|
|
|
.bind(char.materials.hp as i16) // $26
|
|
|
|
|
|
.bind(char.materials.tp as i16) // $27
|
|
|
|
|
|
.bind(char.tech_menu.tech_menu.to_vec()) // $28
|
|
|
|
|
|
.bind(char.option_flags as i32) // $29
|
|
|
|
|
|
.bind(char.playtime as i32) // $20
|
|
|
|
|
|
.bind(char.id.0 as i32) // $31
|
|
|
.execute(conn).await?;
|
|
|
.execute(conn).await?;
|
|
|
Ok(())
|
|
|
Ok(())
|
|
|
}
|
|
|
}
|
|
@ -566,6 +567,16 @@ async fn create_trade(conn: &mut sqlx::PgConnection, char_id1: &CharacterEntityI |
|
|
Ok(trade.into())
|
|
|
Ok(trade.into())
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async fn set_character_playtime(conn: &mut sqlx::PgConnection, char_id: &CharacterEntityId, playtime: u32) -> Result<(), GatewayError>
|
|
|
|
|
|
{
|
|
|
|
|
|
sqlx::query_as::<_, PgTradeEntity>(r#"update player_character set playtime=$2 where id=$1;"#)
|
|
|
|
|
|
.bind(char_id.0)
|
|
|
|
|
|
.bind(playtime)
|
|
|
|
|
|
.fetch_one(conn)
|
|
|
|
|
|
.await?;
|
|
|
|
|
|
Ok(())
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
#[async_trait::async_trait]
|
|
|
#[async_trait::async_trait]
|
|
|
impl EntityGateway for PostgresGateway {
|
|
|
impl EntityGateway for PostgresGateway {
|
|
|
async fn transaction<'a>(&'a mut self) -> Result<Box<dyn EntityGatewayTransaction + 'a>, GatewayError>
|
|
|
async fn transaction<'a>(&'a mut self) -> Result<Box<dyn EntityGatewayTransaction + 'a>, GatewayError>
|
|
@ -705,6 +716,10 @@ impl EntityGateway for PostgresGateway { |
|
|
async fn create_trade(&mut self, char_id1: &CharacterEntityId, char_id2: &CharacterEntityId) -> Result<TradeEntity, GatewayError> {
|
|
|
async fn create_trade(&mut self, char_id1: &CharacterEntityId, char_id2: &CharacterEntityId) -> Result<TradeEntity, GatewayError> {
|
|
|
create_trade(&mut *self.pool.acquire().await?, char_id1, char_id2).await
|
|
|
create_trade(&mut *self.pool.acquire().await?, char_id1, char_id2).await
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async fn set_character_playtime(&mut self, char_id: &CharacterEntityId, playtime: u32) -> Result<(), GatewayError> {
|
|
|
|
|
|
set_character_playtime(&mut *self.pool.acquire().await?, char_id, playtime).await
|
|
|
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -825,5 +840,9 @@ impl<'c> EntityGateway for PostgresTransaction<'c> { |
|
|
async fn create_trade(&mut self, char_id1: &CharacterEntityId, char_id2: &CharacterEntityId) -> Result<TradeEntity, GatewayError> {
|
|
|
async fn create_trade(&mut self, char_id1: &CharacterEntityId, char_id2: &CharacterEntityId) -> Result<TradeEntity, GatewayError> {
|
|
|
create_trade(&mut *self.pgtransaction, char_id1, char_id2).await
|
|
|
create_trade(&mut *self.pgtransaction, char_id1, char_id2).await
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async fn set_character_playtime(&mut self, char_id: &CharacterEntityId, playtime: u32) -> Result<(), GatewayError> {
|
|
|
|
|
|
set_character_playtime(&mut *self.pgtransaction, char_id, playtime).await
|
|
|
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|