House inventory update

This commit is contained in:
Michael Wain 2025-04-03 19:01:05 +03:00
parent 11c0c3d97b
commit dde0d8fa38
11 changed files with 41 additions and 13 deletions

View File

@ -319,11 +319,21 @@ public class GameServer {
int type = message.getArguments().get(1).getInt();
if( type == -2 ) { // home
Map<String, AMFObject> info = (Map<String, AMFObject>) message.getArguments().get(2).getRaw();
Map<String, AMFObject> additions = (Map<String, AMFObject>) info.get("Add").getRaw();
this.homeInventoryService.addFurnitureToCurrentHome(playerId, additions);
Map<String, AMFObject> changes = (Map<String, AMFObject>) info.get("Changes").getRaw();
this.homeInventoryService.addFurnitureToCurrentHome(playerId, changes);
if( info.containsKey("Add") ) {
Map<String, AMFObject> additions = (Map<String, AMFObject>) info.get("Add").getRaw();
this.homeInventoryService.addFurnitureToCurrentHome(playerId, additions);
}
if( info.containsKey("Changes") ) {
Map<String, AMFObject> changes = (Map<String, AMFObject>) info.get("Changes").getRaw();
this.homeInventoryService.addFurnitureToCurrentHome(playerId, changes);
}
if( info.containsKey("Remove") ) {
Map<String, Object> remove = (Map<String, Object>) info.get("Remove").getRaw();
this.homeInventoryService.removeFurnitureFromHome(playerId, remove.keySet());
}
return;
}
// club

View File

@ -26,6 +26,7 @@ public enum AvatarInventoryType {
Smile(-5),
House(34),
HouseFurniture(20),
HouseFurnitureWall(22),
Club(58),
ClubFacade(63),
ClubShow(78),

View File

@ -8,6 +8,7 @@ import lombok.Getter;
public enum CommandType {
UserCommand("$"),
SetLocation("_LS"),
LocationChanges("_LC"),
RemoveUserFromLocation("_UL"),
AddUserToLocation("_UE"),
SetUserAvatarState("_S"),

View File

@ -108,6 +108,8 @@ public class SignUpController {
avatarInventoryService.addPhoneToInventory(userId, 1L);
avatarInventoryService.addBackgroundToInventory(userId, 339L);
avatarInventoryService.addGoodToInventory(new AvatarInventory(referenceLoader.getUserReference(userId), 102L, true, AvatarInventoryType.House));
try {
av.getInventory()
.stream()

View File

@ -51,9 +51,6 @@ public class StaticController {
@Autowired
private ReferenceLoader referenceLoader;
@Autowired
private AvatarInventoryService avatarInventoryService;
@Autowired
private GoodsService goodsService;
@ -101,8 +98,7 @@ public class StaticController {
model.addAttribute("user_id", userId);
model.addAttribute("user_name", "Inventory of " + userService.getUsernameById(userId).get());
AvatarInventory av = new AvatarInventory(referenceLoader.getUserReference(userId), goodId, false, AvatarInventoryType.fromGoodId(goodsService, goodId), 0);
avatarInventoryService.addGoodToInventory(av);
userService.pushToInventory(userId, AvatarInventoryType.fromGoodId(goodsService, goodId), goodId);
return "redirect:/panel_inventory?id="+userId;
}

View File

@ -57,6 +57,9 @@ public class LocationObjectInstance implements ApiResult {
@Column(nullable = false)
private String comment;
@JacksonXmlProperty(isAttribute = true, localName = "Frame")
private Integer frame;
@Override
public LocationObjectInstanceResult toAPIResult() {
return new LocationObjectInstanceResult(this.id, this.objectTypeId, this.objectId, this.objectReferenceId, this.mediaResourceId, this.locationId, this.x, this.y, this.options, this.comment);

View File

@ -72,7 +72,9 @@ public class AMFDeserializer {
a.clear();
if( keyLen == 0 ) {
endMarker = true;
bytes.remove();
if( !bytes.isEmpty() ) {
bytes.remove();
}
continue;
}
a = bytes.subList(0, Math.min(keyLen, bytes.size()));

View File

@ -23,4 +23,9 @@ public interface HouseInventoryRepository extends JpaRepository<HouseInventory,
@Query(value = "SELECT h FROM HouseInventory h WHERE h.user.id = :uid AND h.homeId = :houseId")
List<HouseInventory> findByUserIdAndHouseId(@Param("uid") Integer userId, @Param("houseId") Long houseId);
@Transactional
@Modifying
@Query(value = "UPDATE HouseInventory h SET h.homeId = -1 WHERE h.id = :uid")
void resetHomeId(@Param("uid") Long id);
}

View File

@ -35,6 +35,12 @@ public class HomeInventoryService {
@Autowired
private GoodRepository goodRepository;
public void removeFurnitureFromHome(int userId, Set<String> ids) {
for( String id : ids ) {
houseInventoryRepository.resetHomeId(Long.parseLong(id));
}
}
public void addFurnitureToCurrentHome(int userId, Map<String, AMFObject> additions) {
Set<String> ids = additions.keySet();
long houseId = getCurrentHouseId(userId);

View File

@ -87,7 +87,8 @@ public class LocationService {
houseInventoryRepository.findByUserIdAndHouseId(userId, avatarInventoryService.getUsedHouse(userId).map(AvatarInventory::getId).orElse(-1L))
.stream()
.map(h -> new LocationObjectInstance(
2,
h.getId(),
1,
h.getId().intValue(),
h.getGoodId().intValue(),
goodRepository.findById(h.getGoodId()).get().getMRId().longValue(),
@ -95,7 +96,8 @@ public class LocationService {
h.getX(),
h.getY(),
"",
""
"",
h.getFrame()
))
.collect(Collectors.toList())
);

View File

@ -362,7 +362,7 @@ public class UserService {
if( !this.inventoryService.isSpecificItemExists(userId, type, goodId) ) {
this.inventoryService.addGoodToInventory(new AvatarInventory(userRepository.getReferenceById(userId), goodId, false, type));
}
if( type == AvatarInventoryType.HouseFurniture ) {
if( type == AvatarInventoryType.HouseFurniture || type == AvatarInventoryType.HouseFurnitureWall ) {
houseInventoryRepository.save(new HouseInventory(userRepository.getReferenceById(userId), goodId, -1L, 0.0, 0.0, 0));
}
}