2013年8月23日星期五

As strong as a crusher, python game tutorial(4)


# in this tutorial, we will see something cool than a crusher, which you can
# control your mouse of a picture, when your mouse go , the pic will go...

bg_img = "crusher.png"
mouse_img = "quarry.png"

import pygame
from pygame.locals import *
from sys import exit

pygame.init()

screen = pygame.display.set_mode((640,480),0,32)
pygame.display.set_caption("Crusher for sale")

background = pygame.image.load(bg_img).convert()
mouse_cursor = pygame.image.load(mouse_img).convert_alpha()

while 1:
    for event in pygame.event.get():
        if event.type == QUIT:
            exit()

        screen.blit(background,(0,0,))
     
        # get the position of the pic
        x, y = pygame.mouse.get_pos()
        x -= mouse_cursor.get_width() / 2
        y -= mouse_cursor.get_height() / 2
        screen.blit(mouse_cursor, (x, y))

        pygame.display.update()


2013年8月22日星期四

As strong as a crusher,python game tutorial(4)

In this tutorial, we will make the things move which is very cool:)



#!/usr/bin/env python
#-*- coding:utf-8 -*-

import pygame, sys
from pygame.locals import *

pygame.init()

# set frames per sec
FPS = 10
fpsClock = pygame.time.Clock()

DISPLAYSURF = pygame.display.set_mode((400,600), 0 ,32)

WHITE = (0,255,255)
# load a png file to move
catImg = pygame.image.load('cat.png')

catx = 10
caty = 10

direction = 'down'

while 1:
    DISPLAYSURF.fill(WHITE)
 
    # to control the position of the pic file
 
    if direction == 'right':
        catx += 5
        if catx == 200:
            direction = 'left'
         
    elif direction == 'left':
        catx -= 5
        if catx == 0:
            direction == 'right'

    elif direction == 'down':
        caty += 5
        if caty == 500:
            direction = 'up'
 
    elif direction == 'up':
        caty -= 5
        if caty == 10:
            direction = 'down'

    DISPLAYSURF.blit(catImg, (catx, caty))
 
    for event in pygame.event.get():
        if event.type == QUIT:
            pygame.quit()
            sys.exit()
 
    pygame.display.update()
    fpsClock.tick(FPS)


for more you can just click:
www.quarryequipments.com

The Jaw-Crusher you may overlook...

No matter where you travel along the roadways today, you singing, you enjoying the view you see.However, you must overlook the way you are in, which is the Jaw Crusher to helped us to bulid it, and keep the way in good condition to serve us.


The first jaw-crusher we all know

Since the end of  the1905, the first jaw-crusher which is  mature in technology is Invented.It did not take a long time,the jaw-crusher is widely used in many project, such as  quarries, mining operations, sand and gravel pits to help us reduce, wash, move even separate.

The crusher from SBM

And we -- SBM always focus on the jaw-crusher designed and production for more than 20 years.We accumulated a lot of experience in this field. Since we created, the innovation has become a constant aim to win the crushing market and to serve the clients around the world much better.To keep us in the forefront of the crushing field. we hire the best experts to designed the whole system of our jaw-cursher.For now, our products have been the world-class products, and we are leading world standards in the crushing products, and define the the standards for quality, reliability, performance the value for a jaw-crusher system.

The Secrets that you don't kown about our pe-jaw-crusher

Our PE Jaw Crusher system, it is literally "made to order for the clients," designed to meet your unique processing requirements. Our enginees use the professional software, such as CAD to layouts to aggregate precess, for your new unit to assure that it will fits your job site totally and operational specifications precisely.So, no matter how demanding of your request, you can count on  quality of our products.

Want to get more Information? 
just click here: 

http://www.quarryequipments.com

2013年8月21日星期三

The environmentally friendly crusher will Win the big Market


 As we all know, the environment has been the most important point than the economy, means money.And people
 has take a lot of  attention on it much more than the money.

 For example, in the crushing field, also in the crusher products market, representative of the Portland cement concrete production process is the main raw material of limestone and clay,and then into the cement kiln calcining mature material, then cooked raw material and adding amount of gypsum (sometimes mixed materials or additives) ground.In the production of cement stone mining, cement clinker crusher equipment production line in India, in order to reduce transportation capital close to cement sales market of cement grinding station layout. If the clinker production line built around the city, each producing 1 tons of cement clinker, cement raw material transportation equity of 60%, an increase of about 1.6 tons. Check to ensure that the automatic crusher is composed of what kind of materials. This should be hardened steel. The old model of car crushing machine costs may be lower than the newer models.

So, if we analyse this process, will we find that the transportion costs are high, if we can find a way to save the transportion so that we will save a lot of money to do something else for our client.Under the circumstances. Our company has set out mobile crusher out to support the clients to save the cost. The technique to dispose and recycle concrete waste that is generated in demolition works, as well as construction by-products that are generated in civil engineering works at work sites such as natural stones and rocks, using <strong>mobile crushers </strong>is greatly effective in lowering work costs and in solving disposal site problems and social problems including traffic congestion caused by waste carrying vehicles.

That means,if we can assemble every function to a new machine, it will make sence to the environment. In this point,
We set out our rubber tyred mobile crusher, which is our company developed a series of rock and construction waste crushing equipment, its appearance has greatly expanded the concept of crushing operation. Its design concept, the environment, eliminate the broken ground complex basic configuration and complex logistics bring customers breaking barriers, really provide efficient, low cost of operation of the project for the customer hardware facilities.We believe that it will win the market soon.

With the rubber tyred mobile crusher help, you can do your job soon and better, and the most important is that it will good for the environment to your hometown.We believe that, it will be your right-hand man to support your project.

At last, if you want to order it , you may contact SBM -- the best crusher provider from Shanghai-China.

http://www.quarryequipments.com/

As strong as a crusher,python game tutorial(3)

In this tutorial,we will use a font type to show your text:


import pygame,sys
from pygame.locals import *

pygame.init()

DISPLAYSURF = pygame.display.set_mode((400,300))
pygame.display.set_caption('Hello crusher')

WHITE = (255,255,255)
GREEN = (0,255,0)
BLUE = (0,0,128)

# use the font type in the current dir
fontObj = pygame.font.Font('arial.ttf',32)

# re-load the font and set color
textObj = fontObj.render('Hello crusher', True,GREEN,BLUE)
# make a margin for text
textRectObj = textObj.get_rect()

textRectObj.center = (200,150)

while 1:
    DISPLAYSURF.fill(WHITE)

    DISPLAYSURF.blit(textObj, textRectObj)
    for event in pygame.event.get():
        if event.type == QUIT:
            pygame.quit()
            sys.exit()
    pygame.display.update()

As strong as a crusher,python game tutorial(2)


# well, after hello world programming, let us try
# something cool as a crusher crush down a tree
#!/usr/bin/env python #-*- coding:utf-8 -*- import pygame, sys from pygame.locals import * # init pygame packet pygame.init() # set up a window using 32 bit color
DISPLAYSURF = pygame.display.set_mode((500, 400), 0, 32)
pygame.display.set_caption('Draw a mobile crusher')

# make up some color
BLACK = (0,0,0)
WHITE = (255,255,255)
RED = (255,0,0)
GREEN = (0,255,255)
BLUE = (0,0,255)
GREEN = (0,255,0)


DISPLAYSURF.fill(WHITE)

# draw a line from (200,250) to (40,80) line-weight is 3
# strong as a crusher, opps...
pygame.draw.line(DISPLAYSURF,RED,(200,250),(40,80),3)

# draw a cricle
pygame.draw.circle(DISPLAYSURF,BLUE,(300,50),20,0)

# draw a rect the four point is (200,150,100,50)
pygame.draw.rect(DISPLAYSURF, GREEN, (200,150,100,50))

while True:
    for event in pygame.event.get():
        if event.type == QUIT:
            pygame.quit()
            sys.exit()
    pygame.display.update()



http://www.quarryequipments.com/

Mobile-jaw-crusher, as strong as Wesley Crusher!


 As we all kown,Wesley Crusher, a super character in the television series -- Star Trek: The Next Generation, he appears regularly in the first four seasons and sporadically afterwards.
 He is the son of Old Beverly Crusher and is portrayed by actor Wil Wheaton.

 In the television series, our super Wesley Crusher is so talented that he could master the starship when he is 16.
 well, Crusher eventually need the entrance examination for starfleet academy.His grade ranked lower than required, and he didn't accept to the college in his first attempt.Later, he missed his second chance to take the college entrance examination in the episode, "the household chores a Troi" he d the crew to assist enterprises in saving rick, Deanna, Lwaxana Troi Troi from hostile Ferengi, pickup QuanQi to grant him a promotion.But in the end, the crusher is, and then invited to apply for the second year in college entrance examination and was accepted into the college, he joined the elite group of students called nova squadron.He was involved in the organization will cause he lost credit (the "first responsibility"), when a squadron partner died trying to dangerous and prohibited flight maneuver and under pressure, from team leader Nick locarno, crusher encourage squadron tried to cover up the truth.Although the crew of the intervention and the testimony of the crusher to save him, all the students of the crusher credits cancelled this year, and he had to repeat a year after graduation, and most of the rest of his class.He still, after Oscar until travel to contact him, so he resigned his commission and travelers to explore other planes of reality (" the end of the voyage ").

He subsequently appears in the non-canon A Time To... novel series, visiting his mother. He is also seen sitting next to his mother in the background of the wedding scenes in Star Trek Nemesis. In a scene deleted from the movie Captain Picard asks Wesley if he's excited to serve on board the USS Titan (Captain Riker's ship), and Wesley tells him that he will be running the night shift in Engineering. This implies (though the scene was deleted) that Wesley returned to Starfleet at some point prior to the events of the film.

So, that all about Wesley Crusher, not our mobile-jaw-crusher, our mobile jaw crusher is a new mining & quarrying equipment of SBM. SBM mobile jaw crusher is fitted with a world renowned jaw crusher chamber and a heavy-duty undercarriage for exceptional on site mobility. Mobile jaw crusher makes the jaw crusher with an exceptionally broad range of applications.
Mobile jaw crusher is designed to crush the large materials and screen the crushed materials, to meet today's recycling, quarrying & mining needs. SBM mobile jaw crusher is efficient, versatile and produces high production rates.

Mobile jaw crusher is widely applied in mining and quarrying, road and bridge building, water conservancy, chemistry, construction waste recycling industry etc.
Mobile jaw crusher is the most important mining & quarrying equipment in today’s mining and construction industry.

A heavy duty vibrating feeder to regulate the feed into the crusher, hydraulic drive, reverse crushing action to assist in clearing blockages are all major features of this unit.
Its compact size, ease of transport, and quick set-up times makes the mobile jaw crusher ideal for contract crushing and demolition/recycling applications.
SBM YG series semi-mobile jaw crusher is a compact and high performance crushing machine designed to suit both quarrying and recycling applications. The semi-mobile jaw crusher equip with vibrating feeder, hopper, PE jaw crusher or JC jaw crusher, the motor, and the conveyor belt.
SBM crawler type mobile crusheris SBM’s newest mobile crushing and screening plant, which is fully driven by hydraulic force and moves by chassis track.




Price of stone crusher machine in India

SBM supplies complete stone crushing screening plant, grinding mill for quarrying, mining industry in India, China, South Africa, Germany, USA, Nigeria, Kenya, Indonesia, Pakistan, Saudi Arabia, UAE, Mexico, Peru, Malaysia, Zimbabwe, Brazil, Russia.

SBM is a stone crusher machine manufacturer in China, and offer types of stone crusher machines for sale with best price for quarry and mining industry in India.


As a stone crusher supplier in India, SBM can offer single stone crusher machines for sale with competitive price, such as jaw crusher, roll crusher, gyratory crusher, impact crusher, hammer crusher and cone crusher.

Jaw, gyratory, and roll crushers work by applying compressive force. Jaw crushers operate by allowing stone to flow into the space between two jaws, one of which is stationary while the other is movable. The distance between the jaws diminishes as the stone travels downward under the effect of gravity and the motion of the movable jaw, until the stone ultimately passes through the lower opening.

Impact crushers such as single rotor and hammer mill apply high-speed impact force to accomplish fracturing. Jaw crusher and impact crusher are usually used in primary crushing process. They are coarse stone crusher machine. Different models have different price. 

Stone Crushers are also classified by their method of mechanically transmitted fracturing energy to the rock. SBM Stone Crushers are classified according to the stage of crushing which they accomplish, such as: Primary crusher, Secondary crusher, Tertiary crushers. 

Price of complete stone crusher plant in India

SBM also offer complete stone crusher plant with best price for sale in India. The complete stone crusher plant consist of two kinds: stationary stone crusher plant and mobile stone crusher plant. 

The stationary stone crusher plant usually contains primary jaw crusher, secondary impact crusher, fine cone crusher, vibrating feeder, screening machine and belt conveyor.

In the complete stone crusher plant, A primary crusher receives the stone directly from a quarry after blasting, and produces the first reduction in size. The output of the primary crusher is fed to a secondary crusher, which further reduces the stone size. Some of the stone may pass through four or more crushers before it is reduced to the desired size. The degree of breakage is spread over several stages as a means of closely controlling product size and limiting waste material.

SBM mobile stone crusher plant is our main crushing machine, widely used in coal preparation plant, gold mining plant, and construction waste recycling plant. If you want to get quote or price of these stone crusher machine, please contact us.

As strong as a crusher,python game tutorial(1)

After install python and pygame, we can try out the hello world program:

hello-crusher.py:

# hello world

# as install python and pygame, let us try hello wrold game


import pygame, sys
from pygame.locals import *

# init pygame engin
pygame.init()

# get something like a window
DISPLAYSURF = pygame.display.set_mode((400,640))

pygame.display.set_caption('hello mobile crusher')

# endless loop to see if any event to quit the all things
while True:
    for event in pygame.event.get():
        if event.type == QUIT:  # if it is quit function
            pygame.quit()
            sys.exit()
    pygame.display.update()     # update all things


now, we get the helloo world of pygame!

http://www.quarryequipments.com for more

SBM PE jaw crusher for sale

SBM PE jaw crusher is a kind single toggle jaw crusher with a deep, symmetrical crushing chamber and easy adjustment.This jaw crusher is ideal
for primary crushing as a kind crushing equipment.Compared with single toggle jaw crusher, double toggle jaw crusher is hard to install and maintain but with similar capacity and performance.SBM PE series single toggle jaw crusher is widely used as various crushing equipment in mining and quarrying industry.
PE jaw crusher is ideal
for: Primary crushing equipment in a crushing circuit;
Any crushing demands even the hardest rocks and recycle materials;
High production capacity with low cost per ton;
Main benefits of PE jaw crusher: Simple structure with reliable performance;
High reduction ratio with even final particles;
Easy to operate with low maintenance;
Flexibility with wide application.
PE jaw crusher is the major crushing equipment used as primary crusher in mining and quarrying industry.SBM PE series jaw crusher is an economic and practical crushing equipment machine
for our clients.

The proven PE series jaw crusher is designed to crush even hardest rocks and recycle materials with high crusher availability, low cost per ton, high reduction ratio etc.SBM PE series jaw crusher will be a major crushing equipment in a long time
for its excellent performance in more than 100 countries.
Jaw crusher related knowledge: Pulveriser Jaw Specifications
Rubble Jaw Crusher
Jaw Crusher History
SBM Underground Jaw Crusher
Jaw Crusher Wear Liner
Best Jaw Crusher
Jaw Crusher
for Heavy Equipment
Jaw crusher application and ball mill supplier of SBM in China
Jaw Crusher and Gyratory Roll Crusher
for Stone Produced
Jaw crusher broken material of hardness and determine material toughness
Fine jaw crusher
Jaw Crusher Manufacturer
Europe jaw crusher

you can cantact SBM in here: http://www.quarryequipments.com/contact-us/