about summary refs log tree commit diff stats
path: root/bin/rails
blob: dc131991813455a69f955d6bbbf98bf0f50f3e84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env ruby
# This command will automatically be run when you run "rails" with Rails gems
# installed from the root of your application.

ENGINE_ROOT = File.expand_path("..", __dir__)
ENGINE_PATH = File.expand_path("../lib/wittle/engine", __dir__)
APP_PATH = File.expand_path("../test/dummy/config/application", __dir__)

# Set up gems listed in the Gemfile.
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
require "bundler/setup" if File.exist?(ENV["BUNDLE_GEMFILE"])

require "rails/all"
require "rails/engine/commands"
href='#n245'>245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588
#include "components.h"
#include "game.h"
#include "muxer.h"

// User movement component

void UserMovementComponent::input(Game& game, Entity& entity, int key, int action)
{
  if (action == GLFW_PRESS)
  {
    if (key == GLFW_KEY_LEFT)
    {
      holdingLeft = true;
      
      Message msg(Message::Type::walkLeft);
      entity.send(game, msg);
    } else if (key == GLFW_KEY_RIGHT)
    {
      holdingRight = true;
      
      Message msg(Message::Type::walkRight);
      entity.send(game, msg);
    } else if (key == GLFW_KEY_UP)
    {
      Message msg(Message::Type::jump);
      entity.send(game, msg);
    } else if (key == GLFW_KEY_DOWN)
    {
      Message msg(Message::Type::canDrop);
      entity.send(game, msg);
    }
  } else if (action == GLFW_RELEASE)
  {
    if (key == GLFW_KEY_LEFT)
    {
      holdingLeft = false;
      
      if (holdingRight)
      {
        Message msg(Message::Type::walkRight);
        entity.send(game, msg);
      } else {
        Message msg(Message::Type::stopWalking);
        entity.send(game, msg);
      }
    } else if (key == GLFW_KEY_RIGHT)
    {
      holdingRight = false;
      
      if (holdingLeft)
      {
        Message msg(Message::Type::walkLeft);
        entity.send(game, msg);
      } else {
        Message msg(Message::Type::stopWalking);
        entity.send(game, msg);
      }
    } else if (key == GLFW_KEY_DOWN)
    {
      Message msg(Message::Type::cantDrop);
      entity.send(game, msg);
    } else if (key == GLFW_KEY_UP)
    {
      Message msg(Message::Type::stopJump);
      entity.send(game, msg);
    }
  }
}

// Physics component

void PhysicsBodyComponent::receive(Game&, Entity&, const Message& msg)
{
  if (msg.type == Message::Type::walkLeft)
  {
    velocity.first = -1.5;
  } else if (msg.type == Message::Type::walkRight)
  {
    velocity.first = 1.5;
  } else if (msg.type == Message::Type::stopWalking)
  {
    velocity.first = 0.0;
  } else if (msg.type == Message::Type::stopMovingHorizontally)
  {
    velocity.first = 0.0;
  } else if (msg.type == Message::Type::stopMovingVertically)
  {
    velocity.second = 0.0;
  }
}

void PhysicsBodyComponent::tick(Game&, Entity& entity)
{
  velocity.first += accel.first;
  velocity.second += accel.second;
  
  entity.position.first += velocity.first;
  entity.position.second += velocity.second;
}

void PhysicsBodyComponent::detectCollision(Game& game, Entity& entity, Entity& collider, std::pair<double, double> old_position)
{
  // If already colliding, do nothing!
  if ((old_position.first + collider.size.first > entity.position.first)
    && (old_position.first < entity.position.first + entity.size.first)
    && (old_position.second + collider.size.second > entity.position.second)
    && (old_position.second < entity.position.second + entity.size.second))
  {
    return;
  }
  
  // If newly colliding, SHOCK AND HORROR!
  if ((collider.position.first + collider.size.first > entity.position.first)
    && (collider.position.first < entity.position.first + entity.size.first)
    && (collider.position.second + collider.size.second > entity.position.second)
    && (collider.position.second < entity.position.second + entity.size.second))
  {
    Message msg(Message::Type::collision);
    msg.collisionEntity = &collider;
    
    entity.send(game, msg);
  }
}

// Render player

void PlayerSpriteComponent::render(Game&, Entity& entity, Texture& buffer)
{
  animFrame++;
  
  int frame = 0;
  if (isMoving)
  {
    frame += 2;
    
    if (animFrame % 20 < 10)
    {
      frame += 2;
    }
  }
  
  if (facingLeft)
  {
    frame++;
  }
  
  double alpha = 1.0;
  if (dying && (animFrame % 4 < 2))
  {
    alpha = 0.0;
  }
  
  Rectangle src_rect {frame*10, 0, 10, 12};
  Rectangle dst_rect {(int) entity.position.first, (int) entity.position.second, entity.size.first, entity.size.second};
  buffer.blit(sprite, src_rect, dst_rect, alpha);
}

void PlayerSpriteComponent::receive(Game&, Entity&, const Message& msg)
{
  if (msg.type == Message::Type::stopDying)
  {
    dying = false;
  }
  
  if (dying)
  {
    return;
  }
  
  if (msg.type == Message::Type::walkLeft)
  {
    facingLeft = true;
    isMoving = true;
  } else if (msg.type == Message::Type::walkRight)
  {
    facingLeft = false;
    isMoving = true;
  } else if (msg.type == Message::Type::stopWalking)
  {
    isMoving = false;
  } else if (msg.type == Message::Type::die)
  {
    dying = true;
    isMoving = false;
  }
}

// Player physics

#define JUMP_VELOCITY(h, l) (-2 * (h) / (l))
#define JUMP_GRAVITY(h, l) (2 * ((h) / (l)) / (l))

PlayerPhysicsComponent::PlayerPhysicsComponent()
{
  jump_velocity = JUMP_VELOCITY(TILE_HEIGHT*4.5, 0.3*FRAMES_PER_SECOND);
  jump_gravity = JUMP_GRAVITY(TILE_HEIGHT*4.5, 0.3*FRAMES_PER_SECOND);
  jump_gravity_short = JUMP_GRAVITY(TILE_HEIGHT*3.5, 0.233*FRAMES_PER_SECOND);
  
  accel.second = jump_gravity_short;
}

void PlayerPhysicsComponent::receive(Game&, Entity& entity, const Message& msg)
{
  if (msg.type == Message::Type::walkLeft)
  {
    velocity.first = -1.5;
    direction = -1;
  } else if (msg.type == Message::Type::walkRight)
  {
    velocity.first = 1.5;
    direction = 1;
  } else if (msg.type == Message::Type::stopWalking)
  {
    velocity.first = 0.0;
    direction = 0;
  } else if (msg.type == Message::Type::stopMovingHorizontally)
  {
    velocity.first = 0.0;
  } else if (msg.type == Message::Type::stopMovingVertically)
  {
    velocity.second = 0.0;
  } else if (msg.type == Message::Type::jump)
  {
    if (!frozen)
    {
      playSound("../res/Randomize87.wav", 0.25);
    }
    
    velocity.second = jump_velocity;
    accel.second = jump_gravity;
  } else if (msg.type == Message::Type::stopJump)
  {
    accel.second = jump_gravity_short;
  } else if (msg.type == Message::Type::canDrop)
  {
    canDrop = true;
  } else if (msg.type == Message::Type::cantDrop)
  {
    canDrop = false;
  } else if (msg.type == Message::Type::drop)
  {
    if (canDrop)
    {
      canDrop = false;
    } else {
      entity.position.second = msg.dropAxis - entity.size.second;
      velocity.second = 0;
    }
  } else if (msg.type == Message::Type::die)
  {
    frozen = true;
  } else if (msg.type == Message::Type::stopDying)
  {
    frozen = false;
  }
}

void PlayerPhysicsComponent::tick(Game& game, Entity& entity)
{
  // If frozen, do nothing
  if (frozen)
  {
    return;
  }
  
  // Continue walking even if blocked earlier
  if (velocity.first == 0)
  {
    if (direction < 0)
    {
      velocity.first = -1.5;
    } else if (direction > 0)
    {
      velocity.first = 1.5;
    }
  }
  
  // Increase gravity at the height of jump
  if ((accel.second == jump_gravity) && (velocity.second >= 0))
  {
    accel.second = jump_gravity_short;
  }
  
  // Apply acceleration
  velocity.first += accel.first;
  velocity.second += accel.second;
  
  // Terminal velocity
  if (velocity.first < -16) velocity.first = -16;
  if (velocity.first > 16) velocity.first = 16;
  if (velocity.second < -16) velocity.second = -16;
  if (velocity.second > 16) velocity.second = 16;
  
  // Do the movement
  std::pair<double, double> old_position = entity.position;
  entity.position.first += velocity.first;
  entity.position.second += velocity.second;
  
  // Check for collisions
  game.detectCollision(entity, old_position);
}

// Map rendering

MapRenderComponent::MapRenderComponent(const Map& map)
{
  screen.fill(screen.entirety(), 0, 0, 0);
  
  Texture tiles("../res/tiles.png");
  
  for (int i=0; i<MAP_WIDTH*(MAP_HEIGHT-1); i++)
  {
    int tile = map.mapdata()[i];
    int x = i % MAP_WIDTH;
    int y = i / MAP_WIDTH;
    Rectangle dst {x*TILE_WIDTH, y*TILE_HEIGHT, TILE_WIDTH, TILE_HEIGHT};
    Rectangle src {tile%8*TILE_WIDTH, tile/8*TILE_HEIGHT, TILE_WIDTH, TILE_HEIGHT};

    if (tile > 0)
    {
      screen.blit(tiles, src, dst);
    }
  }
  
  Texture font("../res/font.bmp");
  const char* map_name = map.title();
  int start_x = (40/2) - (strlen(map_name)/2);
  for (size_t i=0; i<strlen(map_name); i++)
  {
    Rectangle srcRect {map_name[i] % 16 * 8, map_name[i] / 16 * 8, 8, 8};
    Rectangle dstRect {(start_x + (int)i)*8, 24*8, 8, 8};
    screen.blit(font, srcRect, dstRect);
  }
}

void MapRenderComponent::render(Game&, Entity&, Texture& buffer)
{
  buffer.blit(screen, screen.entirety(), buffer.entirety());
}

// Map collision

MapCollisionComponent::MapCollisionComponent(const Map& map) : map(map)
{
  addCollision(-6, 0, GAME_WIDTH, Direction::left, (map.getLeftMap() == nullptr) ? Collision::Type::wrap : Collision::Type::teleport);
  addCollision(GAME_WIDTH+6, 0, GAME_WIDTH, Direction::right, (map.getRightMap() == nullptr) ? Collision::Type::reverse : Collision::Type::teleport);
  
  for (int i=0; i<MAP_WIDTH*(MAP_HEIGHT-1); i++)
  {
    int x = i % MAP_WIDTH;
    int y = i / MAP_WIDTH;
    int tile = map.mapdata()[i];
    
    if ((tile > 0) && (tile < 28) && (!((tile >= 5) && (tile <= 7))))
    {
      addCollision(x*TILE_WIDTH, y*TILE_HEIGHT, (y+1)*TILE_HEIGHT, Direction::right, Collision::Type::wall);
      addCollision((x+1)*TILE_WIDTH, y*TILE_HEIGHT, (y+1)*TILE_HEIGHT, Direction::left, Collision::Type::wall);
      addCollision(y*TILE_HEIGHT, x*TILE_WIDTH, (x+1)*TILE_WIDTH, Direction::down, Collision::Type::wall);
      addCollision((y+1)*TILE_HEIGHT, x*TILE_WIDTH, (x+1)*TILE_WIDTH, Direction::up, Collision::Type::wall);
    } else if ((tile >= 5) && (tile <= 7))
    {
      addCollision(y*TILE_HEIGHT, x*TILE_WIDTH, (x+1)*TILE_WIDTH, Direction::down, Collision::Type::platform);
    } else if (tile == 42)
    {
      addCollision(y*TILE_HEIGHT, x*TILE_WIDTH, (x+1)*TILE_WIDTH, Direction::down, Collision::Type::danger);
    }
  }
}

void MapCollisionComponent::addCollision(int axis, int lower, int upper, Direction dir, Collision::Type type)
{
  std::list<Collision>::iterator it;
  
  switch (dir)
  {
    case Direction::up:
      it = up_collisions.begin();
      for (; it!=up_collisions.end(); it++)
      {
        if (it->axis < axis) break;
      }
    
      up_collisions.insert(it, {axis, lower, upper, type});
      
      break;
    case Direction::down:
      it = down_collisions.begin();
      for (; it!=down_collisions.end(); it++)
      {
        if (it->axis > axis) break;
      }
    
      down_collisions.insert(it, {axis, lower, upper, type});
      
      break;
    case Direction::left:
      it = left_collisions.begin();
      for (; it!=left_collisions.end(); it++)
      {
        if (it->axis < axis) break;
      }
  
      left_collisions.insert(it, {axis, lower, upper, type});
      
      break;
    case Direction::right:
      it = right_collisions.begin();
      for (; it!=right_collisions.end(); it++)
      {
        if (it->axis > axis) break;
      }
  
      right_collisions.insert(it, {axis, lower, upper, type});
      
      break;
  }
}

void MapCollisionComponent::detectCollision(Game& game, Entity&, Entity& collider, std::pair<double, double> old_position)
{
  int fixed_x = (int) collider.position.first;
  int fixed_y = (int) collider.position.second;
  int fixed_ox = (int) old_position.first;
  int fixed_oy = (int) old_position.second;
  
  if (fixed_x < fixed_ox)
  {
    for (auto collision : left_collisions)
    {
      if (collision.axis > fixed_ox) continue;
      if (collision.axis < fixed_x) break;
  
      if ((fixed_oy+collider.size.second > collision.lower) && (fixed_oy < collision.upper))
      {
        // We have a collision!
        if (processCollision(game, collider, collision, Direction::left))
        {
          collider.position.second = old_position.second;
          
          return;
        }
    
        break;
      }
    }
  } else if (fixed_x > fixed_ox)
  {
    for (auto collision : right_collisions)
    {
      if (collision.axis < fixed_ox+collider.size.first) continue;
      if (collision.axis > fixed_x+collider.size.first) break;
  
      if ((fixed_oy+collider.size.second > collision.lower) && (fixed_oy < collision.upper))
      {
        // We have a collision!
        if (processCollision(game, collider, collision, Direction::right))
        {
          collider.position.second = old_position.second;
          
          return;
        }
    
        break;
      }
    }
  }
  
  fixed_x = (int) collider.position.first;
  fixed_y = (int) collider.position.second;
  
  if (fixed_y < fixed_oy)
  {
    for (auto collision : up_collisions)
    {
      if (collision.axis > fixed_oy) continue;
      if (collision.axis < fixed_y) break;
  
      if ((fixed_x+collider.size.first > collision.lower) && (fixed_x < collision.upper))
      {
        // We have a collision!
        if (processCollision(game, collider, collision, Direction::up))
        {
          return;
        }
    
        break;
      }
    }
  } else if (fixed_y > fixed_oy)
  {
    for (auto collision : down_collisions)
    {
      if (collision.axis < fixed_oy+collider.size.second) continue;
      if (collision.axis > fixed_y+collider.size.second) break;

      if ((fixed_x+collider.size.first > collision.lower) && (fixed_x < collision.upper))
      {
        // We have a collision!
        if (processCollision(game, collider, collision, Direction::down))
        {
          return;
        }
        
        break;
      }
    }
  }
}

bool MapCollisionComponent::processCollision(Game& game, Entity& collider, Collision collision, Direction dir)
{
  if (collision.type == Collision::Type::wall)
  {
    if (dir == Direction::left)
    {
      collider.position.first = collision.axis;
    
      Message msg(Message::Type::stopMovingHorizontally);
      collider.send(game, msg);
    } else if (dir == Direction::right)
    {
      collider.position.first = collision.axis - collider.size.first;
    
      Message msg(Message::Type::stopMovingHorizontally);
      collider.send(game, msg);
    } else if (dir == Direction::up)
    {
      collider.position.second = collision.axis;
      
      Message msg(Message::Type::stopMovingVertically);
      collider.send(game, msg);
    } else if (dir == Direction::down)
    {
      collider.position.second = collision.axis - collider.size.second;
      
      Message msg(Message::Type::stopMovingVertically);
      collider.send(game, msg);
    }
  } else if (collision.type == Collision::Type::wrap)
  {
    if (dir == Direction::left)
    {
      collider.position.first = GAME_WIDTH-collider.size.first/2;
    } else if (dir == Direction::right)
    {
      collider.position.first = -collider.size.first/2;
    } else if (dir == Direction::up)
    {
      collider.position.second = GAME_HEIGHT-collider.size.second/2-1;
    } else if (dir == Direction::down)
    {
      collider.position.second = -collider.size.second/2;
    }
  } else if (collision.type == Collision::Type::teleport)
  {
    if (dir == Direction::left)
    {
      collider.position.first = GAME_WIDTH-collider.size.first/2;
      game.loadMap(*(map.getLeftMap()));
    } else if (dir == Direction::right)
    {
      collider.position.first = -collider.size.first/2;
      game.loadMap(*(map.getRightMap()));
    }
    
    return true;
  } else if (collision.type == Collision::Type::reverse)
  {
    if (dir == Direction::right)
    {
      collider.position.first = collision.axis - collider.size.first;
    
      Message msg(Message::Type::walkLeft);
      collider.send(game, msg);
    }
  } else if (collision.type == Collision::Type::platform)
  {
    Message msg(Message::Type::drop);
    msg.dropAxis = collision.axis;

    collider.send(game, msg);
  } else if (collision.type == Collision::Type::danger)
  {
    game.playerDie(collider, map);
  }
  
  return false;
}