
Product
Introducing Repository Access Permissions and Custom Roles
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.
@threeatom/gameframework-mvc-core
Advanced tools
mvc-coreTODO: 游戏开发mvc模式
export class GameStartCommand extends Command {
public static readonly GameStartEvent: string = "GameStart";
OnExecute(): void {
console.log("GameStartCommand executed");
this.getModel<GameModel>(GameModel.CLASS_NAME).Count.Value = 0;
// 通知游戏开始
this.sendNotification(GameStartCommand.GameStartEvent);
}
}
export class GameEndCommand extends Command {
public static readonly GameEndEvent: string = "GameEnd";
OnExecute(): void {
console.log("GameEndCommand executed");
this.getModel<GameModel>(GameModel.CLASS_NAME).Count.Value = 100;
// 通知游戏结束
this.sendNotification(GameEndCommand.GameEndEvent);
}
}
export class GameController extends Controller {
initialize(): void {
this.registerEvent('GameStart', (data) => {
console.log(`Game start with data ${data}`);
this.runGame();
});
this.registerEvent('GameEnd', (data) => {
console.log(`Game end with data ${data}`);
});
}
runGame(){
for(let i = 0; i < 10; i++){
this.getModel<GameModel>(GameModel.CLASS_NAME).Count.Value = i;
console.log(`我得分: ${i}`);
}
//发送命令 游戏结束
this.executeCommand(new GameEndCommand());
};
}
export class GameModel extends Model {
getClassName(): string {
return GameModel.CLASS_NAME;
}
static CLASS_NAME: string="GameModel";
Count = new BindableProperty<number>(0);
initialize(): void {
this.Count.setValueWithoutEvent(0);
this.Count.register(new ValueChangedObserver((value) => {
console.log(`Count value changed to ${value}`);
}));
}
}
export class GameView extends View {
initialize() {
this.getModel<GameModel>(GameModel.CLASS_NAME).Count.register(new ValueChangedObserver((property) => {
this.showScore(property.Value);
}));
}
showScore(score: number) {
console.log(`渲染分数: ${score}`);
}
}
const mvc = MvcFramework.getInstance();
const gameController: GameController = new GameController();
mvc.registerModel(GameModel);
const gameView:GameView=new GameView(gameController);
mvc.executeCommand(new GameStartCommand());
const model = mvc.getModel<GameModel>(GameModel.CLASS_NAME);
FAQs
> TODO: description
The npm package @threeatom/gameframework-mvc-core receives a total of 20 weekly downloads. As such, @threeatom/gameframework-mvc-core popularity was classified as not popular.
We found that @threeatom/gameframework-mvc-core demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.

Product
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.