AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Plugins (https://forums.alliedmods.net/forumdisplay.php?f=108)
-   -   [ANY] Tetris (Version 1.1) (https://forums.alliedmods.net/showthread.php?t=169464)

Peace-Maker 10-12-2011 22:53

[ANY] Tetris (Version 1.1)
 
9 Attachment(s)
Tetris
A tetris minigame simulation. (Because i'm bored)

This plugin ports the well known russian Tetris game to SourceMod. Players are able to play Tetris in a menu and compare their highscores.

https://forums.alliedmods.net/attach...1&d=1475013069

Just type !tetris (sm_tetris) in chat and start a new game. Try to clear as many lines as possible and reach a high score until your blocks reach the top.

Controls are intuitive. Just use your walking keys. Left and right move the current tetrimino in that direction, up rotates it clockwise and down speeds up the falling.
Players may also press jump (spacebar) or use (e) to hard drop the tetrimino and let it fall to the floor immediately.

https://forums.alliedmods.net/attach...1&d=1475013069

There are some stats on the right, showing your current level, number of cleared lines, score and the next tetrimino.

Scoring is based on this tables. T-Spins aren't rewarded though..

There are 3 difficulties differing in the tetrimino fallingspeed. Each difficulty has it's own TOP 5 highscore list, which may be accessed from the !tetris main menu. Next to the global top5, players are able to check their own best scores for each difficulty.

This plugin uses clientprefs to save the sound settings of each player. Each player may individually enable/disable the sound effects or music.

ConVars:
  • sm_tetris_disableharddrop - Disable hard dropping the tetrimino instantly to the floor with the spacebar? (Default: 0)
  • sm_tetris_disablesounds - Disable all tetris sounds? (Default: 0)
  • sm_tetris_onlydead - Player has to be dead to play tetris? (Default: 0)
  • sm_tetris_disableinfopanel - Disable showing stats like score/cleared bars in a (Key)Hint panel while playing? (Default: 0)
Installation:
  1. Upload the tetris.smx into you sourcemod/plugins folder.
  2. If you want to enable the tetris sounds, extract the tetris_sounds.zip into your modfolder and upload it on your fastdl, if you use one. If you don't want sounds set sm_tetris_disablesounds to 1!
  3. Edit your databases.cfg and add a "tetris" section to save the highscores in. If you don't add one, it uses the "storage-local" sqlite database as a fallback.
    1. SQLite:
      Code:

          "tetris"
          {
              "driver"            "sqlite"
              "database"            "tetris"
          }

    2. MySQL:
      Code:

          "tetris"
          {
              "driver"            "mysql"
              "host"                "localhost"
              "database"            "tetris"
              "user"                "youruser"
              "pass"                "yourpass"
              //"timeout"            "0"
              "port"            "3306"
          }

    3. If you use mysql, execute this query to create the table:
      PHP Code:

      CREATE TABLE `tetris_players` (
      `
      steamidVARCHAR64 NOT NULL,
      `
      nameVARCHAR64 NOT NULL,
      `
      score_easyINT NOT NULL DEFAULT '0',
      `
      score_normalINT NOT NULL DEFAULT '0',
      `
      score_hardINT NOT NULL DEFAULT '0',
      PRIMARY KEY ( `steamid` )
      ENGINE InnoDB CHARACTER SET utf8 COLLATE utf8_general_ci

  4. Change the map to load the plugin and configure it in the newly generated config file in cfg/sourcemod/plugin.tetris.cfg.
Known issues:
Some users' machines are unable to display UTF-8 chars ingame, so they won't be able to play this game as they will only see messy squares all over. It's clientside and i don't know how to fix that ;)

Developers:

The tetris.inc include provides one native to be implemented into ALL afk managers out there!!!1
Spoiler


Changelog:
Spoiler



Thanks to:


Did you see...:

Sounds from hark.com.

Note: This plugin won't compile on the forum due to it's custom include. Use the provided .smx or compile yourself.

McFlurry 10-12-2011 23:14

Re: [ANY] Tetris (Version 1.0)
 
Nice job, very helpful for those games with no re-spawning until the round is over.

napalm00 10-13-2011 00:50

Re: [ANY] Tetris (Version 1.0)
 
Let me say it, I love when you're bored :D.
Now we just need pacman to complete the collection.

javalia 10-13-2011 01:54

Re: [ANY] Tetris (Version 1.0)
 
awsome job again dude.
anyway, u could use create table if not exist sentence for automated table create processing.

Peace-Maker 10-13-2011 02:01

Re: [ANY] Tetris (Version 1.0)
 
Quote:

Originally Posted by javalia (Post 1573950)
awsome job again dude.
anyway, u could use create table if not exist sentence for automated table create processing.

I usually don't allow the mysql users used by sourcemod plugins to create tables. Just foreseeing error spamming if that query constantly fails due to that. It's a onetimer either, so i prefer it that way. The sqlite table creation indeed uses CREATE TABLE IF NOT EXISTS :)

javalia 10-13-2011 02:10

Re: [ANY] Tetris (Version 1.0)
 
wat da.....i see..i still cannot understand why u r keeping that stricted policy to SM sql work but....well....k.

Groger 10-13-2011 08:45

Re: [ANY] Tetris (Version 1.0)
 
Haha, great plugin. how about a !toptetris command (top 10 tetris players)

sinblaster 10-13-2011 13:00

Re: [ANY] Tetris (Version 1.0)
 
im going to wait for Space Invaders & Asteroids :P

andi67 10-13-2011 14:10

Re: [ANY] Tetris (Version 1.0)
 
LOL......great!!!

sipster19 10-13-2011 21:48

Re: [ANY] Tetris (Version 1.0)
 
Very cool, thanks for making this.


All times are GMT -4. The time now is 19:22.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.